| 1234567891011121314151617181920212223242526272829 |
- <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>
- <ItemGroup>
- <!-- SEIBro 실응답 fixture (docs/SEIBro/samples 복사본, 37종) — 폴더 구조 유지 출력 복사 -->
- <Content Include="Fixtures\**\*.xml" CopyToOutputDirectory="PreserveNewest" />
- <!-- KOSIS 실응답 fixture (라이브 캡처 트림본) — 폴더 구조 유지 출력 복사 -->
- <Content Include="Fixtures\**\*.json" CopyToOutputDirectory="PreserveNewest" />
- </ItemGroup>
- </Project>
|