36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<RootNamespace>Microsoft.AspNetCore.Analyzers</RootNamespace>
|
|
|
|
<!-- Tests do not work on Helix or when bin/ directory is not in project directory due to undeclared dependency on test content. -->
|
|
<!-- https://github.com/aspnet/AspNetCore/issues/6549 -->
|
|
<BuildHelixPayload>false</BuildHelixPayload>
|
|
<BaseOutputPath />
|
|
<OutputPath />
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="$(SharedSourceRoot)test\SkipOnHelixAttribute.cs" />
|
|
<Content Include="TestFiles\**\*.*" CopyToPublishDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\src\Microsoft.AspNetCore.Analyzers.csproj" />
|
|
|
|
<Reference Include="Microsoft.AspNetCore.Analyzer.Testing" />
|
|
<Reference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
|
|
|
|
<!--
|
|
These tests include startup code for most parts of our stack. This list will grow as we add more.
|
|
-->
|
|
<Reference Include="Microsoft.AspNetCore.Components.Server" />
|
|
<Reference Include="Microsoft.AspNetCore.Mvc" />
|
|
<Reference Include="Microsoft.AspNetCore.SignalR" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|