pschelpdesk/Vendor/Prise.Tests.Integration/Prise.IntegrationTestsHost/Prise.IntegrationTestsHost.csproj
2024-11-04 20:45:34 +01:00

50 lines
1.8 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
<DefineConstants>NETCORE2_1</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<DefineConstants>NETCORE3_1</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net5.0'">
<DefineConstants>NETCORE3_1</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0'">
<DefineConstants>NETCORE3_1</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../Prise/Prise.csproj" />
<ProjectReference Include="../../Prise.Plugin/Prise.Plugin.csproj" />
<ProjectReference Include="../../Prise.Proxy/Prise.Proxy.csproj" />
<ProjectReference Include="../Prise.IntegrationTestsContract/Prise.IntegrationTestsContract.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="data.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="tokens.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="dictionary-de-DE.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="dictionary-fr-FR.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="dictionary-nl-BE.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>