|
1 | | -<Project Sdk="Microsoft.NET.Sdk.Web"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <IsPackable>false</IsPackable> |
5 | | - </PropertyGroup> |
6 | | - |
7 | | - <ItemGroup> |
8 | | - <PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)"> |
9 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
10 | | - <PrivateAssets>all</PrivateAssets> |
11 | | - </PackageReference> |
12 | | - <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.10" /> |
13 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" /> |
14 | | - <PackageReference Include="NSubstitute" Version="$(NSubstituteVersion)" /> |
15 | | - <PackageReference Include="xunit" Version="$(XUnitVersion)" /> |
16 | | - <PackageReference Include="xunit.runner.visualstudio" Version="$(XUnitRunnerVisualStudioVersion)"> |
17 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
18 | | - <PrivateAssets>all</PrivateAssets> |
19 | | - </PackageReference> |
20 | | - <PackageReference Include="AutoFixture.Xunit2" Version="$(AutoFixtureXUnit2Version)" /> |
21 | | - </ItemGroup> |
22 | | - |
23 | | - <ItemGroup> |
24 | | - <ProjectReference Include="..\..\src\Scim\Scim.csproj" /> |
25 | | - <ProjectReference Include="..\..\..\test\Common\Common.csproj" /> |
26 | | - <ProjectReference Include="..\..\..\test\IntegrationTestCommon\IntegrationTestCommon.csproj" /> |
27 | | - </ItemGroup> |
28 | | - <ItemGroup> |
29 | | - <Content Update="Properties\launchSettings.json"> |
30 | | - <ExcludeFromSingleFile>true</ExcludeFromSingleFile> |
31 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
32 | | - <CopyToPublishDirectory>Never</CopyToPublishDirectory> |
33 | | - </Content> |
34 | | - </ItemGroup> |
35 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk.Web"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <IsPackable>false</IsPackable> |
| 5 | + <!-- These opt outs should be removed when all warnings are addressed --> |
| 6 | + <WarningsNotAsErrors>$(WarningsNotAsErrors);CA1305</WarningsNotAsErrors> |
| 7 | + </PropertyGroup> |
| 8 | + |
| 9 | + <ItemGroup> |
| 10 | + <PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)"> |
| 11 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 12 | + <PrivateAssets>all</PrivateAssets> |
| 13 | + </PackageReference> |
| 14 | + <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.10" /> |
| 15 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" /> |
| 16 | + <PackageReference Include="NSubstitute" Version="$(NSubstituteVersion)" /> |
| 17 | + <PackageReference Include="xunit" Version="$(XUnitVersion)" /> |
| 18 | + <PackageReference Include="xunit.runner.visualstudio" Version="$(XUnitRunnerVisualStudioVersion)"> |
| 19 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 20 | + <PrivateAssets>all</PrivateAssets> |
| 21 | + </PackageReference> |
| 22 | + <PackageReference Include="AutoFixture.Xunit2" Version="$(AutoFixtureXUnit2Version)" /> |
| 23 | + </ItemGroup> |
| 24 | + |
| 25 | + <ItemGroup> |
| 26 | + <ProjectReference Include="..\..\src\Scim\Scim.csproj" /> |
| 27 | + <ProjectReference Include="..\..\..\test\Common\Common.csproj" /> |
| 28 | + <ProjectReference Include="..\..\..\test\IntegrationTestCommon\IntegrationTestCommon.csproj" /> |
| 29 | + </ItemGroup> |
| 30 | + <ItemGroup> |
| 31 | + <Content Update="Properties\launchSettings.json"> |
| 32 | + <ExcludeFromSingleFile>true</ExcludeFromSingleFile> |
| 33 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 34 | + <CopyToPublishDirectory>Never</CopyToPublishDirectory> |
| 35 | + </Content> |
| 36 | + </ItemGroup> |
| 37 | +</Project> |
0 commit comments