mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-16 10:58:30 -05:00
Fix "Save to CSV" CodePages assembly version mismatch (#790)
* Fix "Save to CSV" CodePages assembly version mismatch * Add comment to delete packagereference once moving off preview version
This commit is contained in:
@@ -16,9 +16,9 @@
|
|||||||
"netcoreapp2.2"
|
"netcoreapp2.2"
|
||||||
],
|
],
|
||||||
"MainProjects": [
|
"MainProjects": [
|
||||||
"Microsoft.SqlTools.ServiceLayer",
|
|
||||||
"Microsoft.SqlTools.Credentials",
|
"Microsoft.SqlTools.Credentials",
|
||||||
"Microsoft.SqlTools.ResourceProvider"
|
"Microsoft.SqlTools.ResourceProvider",
|
||||||
|
"Microsoft.SqlTools.ServiceLayer"
|
||||||
],
|
],
|
||||||
"PackageProjects": [
|
"PackageProjects": [
|
||||||
"Microsoft.SqlTools.CoreServices",
|
"Microsoft.SqlTools.CoreServices",
|
||||||
|
|||||||
@@ -28,6 +28,9 @@
|
|||||||
<PackageReference Include="System.Composition" Version="1.1.0" />
|
<PackageReference Include="System.Composition" Version="1.1.0" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
|
||||||
<PackageReference Include="System.Security.Permissions" Version="4.5.0" />
|
<PackageReference Include="System.Security.Permissions" Version="4.5.0" />
|
||||||
|
|
||||||
|
<!-- delete reference from project once moving off preview version !-->
|
||||||
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.6.0-preview3-26501-04" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="**\*.cs" />
|
<Compile Include="**\*.cs" />
|
||||||
|
|||||||
@@ -19,6 +19,10 @@
|
|||||||
<DefineConstants>TRACE;DEBUG;NETCOREAPP1_0;NETCOREAPP2_0</DefineConstants>
|
<DefineConstants>TRACE;DEBUG;NETCOREAPP1_0;NETCOREAPP2_0</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<!-- delete reference from project once moving off preview version !-->
|
||||||
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.6.0-preview3-26501-04" />
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Microsoft.SqlTools.Hosting\Microsoft.SqlTools.Hosting.csproj" />
|
<ProjectReference Include="..\Microsoft.SqlTools.Hosting\Microsoft.SqlTools.Hosting.csproj" />
|
||||||
<!-- Note: must reference the resource provider projects in order for them to be bundled into the app. Otherwise will not have any of the required DLLs and
|
<!-- Note: must reference the resource provider projects in order for them to be bundled into the app. Otherwise will not have any of the required DLLs and
|
||||||
|
|||||||
Reference in New Issue
Block a user