Initial commit: BizTalk IIS inventory with DOCX reporting
Build und Test / build (push) Has been cancelled

This commit is contained in:
2026-07-24 15:32:18 +02:00
commit d326341488
27 changed files with 4776 additions and 0 deletions
@@ -0,0 +1,28 @@
<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>