29 lines
1.7 KiB
XML
29 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net472</TargetFrameworks>
|
|
<!-- Auf Linux zusätzlich plattformneutrale Sicherheits-/DOCX-Tests tatsächlich ausführen. -->
|
|
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">net472;net10.0</TargetFrameworks>
|
|
<RootNamespace>BizTalkIisEnvironmentInventory.Tests</RootNamespace>
|
|
<AssemblyName>BizTalkIisEnvironmentInventory.Tests</AssemblyName>
|
|
<LangVersion>7.3</LangVersion>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<Deterministic>true</Deterministic>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
|
|
<ProjectReference Include="..\..\src\BizTalkIisEnvironmentInventory\BizTalkIisEnvironmentInventory.csproj" />
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
|
|
<Reference Include="System.IO.Compression" />
|
|
<Reference Include="System.IO.Compression.FileSystem" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
|
|
<Compile Include="..\..\src\BizTalkIisEnvironmentInventory\Infrastructure\CommandLineOptions.cs" Link="Shared\CommandLineOptions.cs" />
|
|
<Compile Include="..\..\src\BizTalkIisEnvironmentInventory\Infrastructure\SensitiveDataSanitizer.cs" Link="Shared\SensitiveDataSanitizer.cs" />
|
|
<Compile Include="..\..\src\BizTalkIisEnvironmentInventory\Models\InventoryModels.cs" Link="Shared\InventoryModels.cs" />
|
|
<Compile Include="..\..\src\BizTalkIisEnvironmentInventory\Reporting\DocxReportWriter.cs" Link="Shared\DocxReportWriter.cs" />
|
|
</ItemGroup>
|
|
</Project>
|