mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
* Update form .NET Core 2.2 to .NET Core 3.1 - Global variable for projects - Change TFMs from netcoreapp2.2 to netcoreapp3.1 - Update global.json - Update build.json - Remove direct framework cake TestCore task - Update travis dotnet version - Update azure pipline file - Update vscode launch.json * Add Central Package Management * Fix xUnit Breaking Change for MemberData type * Fix xUnit breaking change for duplicate test method name * Fix Rang/Index type conflict with System.Rang/Index * Update vscode tasks.json * Change serviceHostExecutable path in ServiceTestDriver.cs * Downgrade SDK version (https://github.com/appveyor/ci/issues/3440) - Appveyor hasn't installed latest SDK therefore I downgrade it until they install it. * Dump Microsoft.SqlServer.DACFx
38 lines
1.8 KiB
XML
38 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>$(CredentialsTargetFramework)</TargetFramework>
|
|
<AssemblyName>MicrosoftSqlToolsCredentials</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
|
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
|
|
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<DefineConstants>$(DefineConstants);NETCOREAPP1_0</DefineConstants>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<DebugType>portable</DebugType>
|
|
<RuntimeIdentifiers>win7-x64;win7-x86;ubuntu.14.04-x64;ubuntu.16.04-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.23-x64;opensuse.13.2-x64;osx.10.11-x64;linux-x64;win10-arm;win10-arm64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" Exclude="**/obj/**/*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json"/>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyModel" />
|
|
<PackageReference Include="System.IO.Packaging" />
|
|
<PackageReference Include="System.Runtime.Loader" />
|
|
<PackageReference Include="System.Composition" />
|
|
<PackageReference Include="System.Security.Permissions" />
|
|
<PackageReference Include="System.Text.Encoding.CodePages"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Microsoft.SqlTools.Hosting/Microsoft.SqlTools.Hosting.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Localization\sr.resx" />
|
|
<None Include="Localization\sr.strings" />
|
|
</ItemGroup>
|
|
</Project>
|