29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<RootNamespace>Microsoft.AspNetCore.Mvc.Api.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/9431 -->
|
|
<BuildHelixPayload>false</BuildHelixPayload>
|
|
<BaseOutputPath />
|
|
<OutputPath />
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\..\Mvc.Analyzers\test\Infrastructure\MvcDiagnosticAnalyzerRunner.cs" Link="Infrastructure\MvcDiagnosticAnalyzerRunner.cs" />
|
|
<Compile Include="$(SharedSourceRoot)test\SkipOnHelixAttribute.cs" />
|
|
<Content Include="TestFiles\**\*.*" CopyToPublishDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Mvc.Api.Analyzers\src\Microsoft.AspNetCore.Mvc.Api.Analyzers.csproj" />
|
|
<ProjectReference Include="..\..\Mvc\ref\Microsoft.AspNetCore.Mvc.csproj" />
|
|
<Reference Include="Microsoft.AspNetCore.Analyzer.Testing" />
|
|
<Reference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|