| 12345678910111213141516171819202122232425262728293031323334353637 |
- <Project>
- <PropertyGroup>
- <LangVersion>9.0</LangVersion>
- <!-- Enables Strict mode for Roslyn compiler -->
- <Features>strict;nullablePublicOnly</Features>
- </PropertyGroup>
- <ItemGroup>
- <!-- Required to exist in the NuGet package cache to enable code-signing. -->
- <PackageReference Include="MicroBuild.Core" Version="0.3.0" PrivateAssets="All" AllowExplicitReference="true" ExcludeAssets="All" />
- </ItemGroup>
- <ItemGroup Condition=" '$(IsTestProject)' == 'true' ">
- <Reference Include="Microsoft.AspNetCore.Testing" />
- <Reference Include="Moq" />
- <Reference Include="NETStandard.Library" />
- <Compile Include="$(SharedSourceRoot)test\SuccessfulTests.cs" LinkBase="SharedTests" />
- </ItemGroup>
- <Import Project="$(RepoRoot)src\Testing\src\build\Microsoft.AspNetCore.Testing.props" Condition=" '$(IsTestProject)' == 'true' " />
- <ItemDefinitionGroup Condition=" '$(IsTestProject)' == 'true' ">
- <Content>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
- </Content>
- </ItemDefinitionGroup>
- <!-- Properties to control how we handle warnings when using the tasks provided by the Yarn MSBuild SDK -->
- <PropertyGroup>
- <IgnoreYarnWarnings>false</IgnoreYarnWarnings>
- <IgnoreYarnWarnings Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</IgnoreYarnWarnings>
- </PropertyGroup>
- </Project>
|