| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <IsPackable>false</IsPackable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.NET.Test.Sdk" />
- <PackageReference Include="MSTest.TestAdapter" />
- <PackageReference Include="MSTest.TestFramework" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Application\Application.csproj" />
- <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
- </ItemGroup>
- </Project>
|