mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* Bump to SDK 7.0 and related updates * More net 7 updates * Install SDK 2.0 for ESRP * Fix typo * Address comment and update integration test script * Disable new warnings from SDK update
39 lines
1.8 KiB
XML
39 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>MicrosoftSqlToolsCredentials</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
|
|
<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>
|
|
<RuntimeIdentifiers>$(ToolsServiceTargetRuntimes)</RuntimeIdentifiers>
|
|
<NoWarn>$(NoWarn);SYSLIB1054</NoWarn>
|
|
</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"/>
|
|
<PackageReference Include="System.Reactive.Core" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Microsoft.SqlTools.Hosting/Microsoft.SqlTools.Hosting.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Localization\*.resx" />
|
|
<None Include="Localization\sr.strings" />
|
|
</ItemGroup>
|
|
</Project>
|