24 lines
748 B
XML
24 lines
748 B
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<LangVersion>7.2</LangVersion>
|
|
|
|
<!-- Instructs the compiler to use SHA256 instead of SHA1 when adding file hashes to PDBs. -->
|
|
<ChecksumAlgorithm>SHA256</ChecksumAlgorithm>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Internal.AspNetCore.Sdk" PrivateAssets="All" Version="$(InternalAspNetCoreSdkPackageVersion)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(IsTestProject)' == 'true' ">
|
|
<Reference Include="Microsoft.AspNetCore.Testing" />
|
|
<Reference Include="Microsoft.NET.Test.Sdk" />
|
|
<Reference Include="Moq" />
|
|
<Reference Include="xunit" />
|
|
<Reference Include="xunit.analyzers" />
|
|
<Reference Include="xunit.runner.visualstudio" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|