Application.Tests.csproj 825 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <IsPackable>false</IsPackable>
  4. </PropertyGroup>
  5. <ItemGroup>
  6. <PackageReference Include="Microsoft.NET.Test.Sdk" />
  7. <PackageReference Include="MSTest.TestAdapter" />
  8. <PackageReference Include="MSTest.TestFramework" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\Application\Application.csproj" />
  12. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <!-- SEIBro 실응답 fixture (docs/SEIBro/samples 복사본, 37종) — 폴더 구조 유지 출력 복사 -->
  19. <Content Include="Fixtures\**\*.xml" CopyToOutputDirectory="PreserveNewest" />
  20. </ItemGroup>
  21. </Project>