32 lines
1.8 KiB
XML
32 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
|
|
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
|
|
<SignAssembly>false</SignAssembly>
|
|
<PublicSign>false</PublicSign>
|
|
<!-- Mitigation for long path issues -->
|
|
<AssemblyName>Diagnostics.FunctionalTests</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\samples\DatabaseErrorPageSample\DatabaseErrorPageSample.csproj" />
|
|
<ProjectReference Include="..\..\samples\DeveloperExceptionPageSample\DeveloperExceptionPageSample.csproj" />
|
|
<ProjectReference Include="..\..\samples\ElmPageSample\ElmPageSample.csproj" />
|
|
<ProjectReference Include="..\..\samples\ExceptionHandlerSample\ExceptionHandlerSample.csproj" />
|
|
<ProjectReference Include="..\..\samples\MiddlewareAnalysisSample\MiddlewareAnalysisSample.csproj" />
|
|
<ProjectReference Include="..\..\samples\StatusCodePagesSample\StatusCodePagesSample.csproj" />
|
|
<ProjectReference Include="..\..\samples\WelcomePageSample\WelcomePageSample.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="$(MicrosoftAspNetCoreServerKestrelPackageVersion)" />
|
|
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="$(MicrosoftAspNetCoreTestHostPackageVersion)" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Testing" Version="$(MicrosoftAspNetCoreTestingPackageVersion)" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkPackageVersion)" />
|
|
<PackageReference Include="xunit" Version="$(XunitPackageVersion)" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitRunnerVisualStudioPackageVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|