|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net8.0</TargetFramework> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <IsPackable>false</IsPackable> |
| 8 | + </PropertyGroup> |
| 9 | + |
| 10 | + <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
| 11 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 12 | + </PropertyGroup> |
| 13 | + |
| 14 | + <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
| 15 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 16 | + </PropertyGroup> |
| 17 | + |
| 18 | + <ItemGroup> |
| 19 | + <PackageReference Include="coverlet.collector" Version="6.0.4"> |
| 20 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 21 | + <PrivateAssets>all</PrivateAssets> |
| 22 | + </PackageReference> |
| 23 | + <PackageReference Include="EPiServer.CMS" Version="12.33.1" /> |
| 24 | + <PackageReference Include="EPiServer.Commerce" Version="14.40.0" /> |
| 25 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" /> |
| 26 | + <PackageReference Include="Testcontainers.MsSql" Version="4.6.0" /> |
| 27 | + <PackageReference Include="xunit" Version="2.9.3" /> |
| 28 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.1.1"> |
| 29 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 30 | + <PrivateAssets>all</PrivateAssets> |
| 31 | + </PackageReference> |
| 32 | + </ItemGroup> |
| 33 | + |
| 34 | + <ItemGroup> |
| 35 | + <Using Include="Xunit" /> |
| 36 | + </ItemGroup> |
| 37 | + |
| 38 | + <ItemGroup> |
| 39 | + <ProjectReference Include="..\Optimizely.TestContainers.Shared\Optimizely.TestContainers.Shared.csproj" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <None Update="DefaultSiteContent.episerverdata"> |
| 44 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 45 | + </None> |
| 46 | + </ItemGroup> |
| 47 | + |
| 48 | + <ItemGroup> |
| 49 | + <Folder Include="Models\" /> |
| 50 | + </ItemGroup> |
| 51 | + |
| 52 | +</Project> |
0 commit comments