34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<UseWPF>true</UseWPF>
|
||
|
|
<ApplicationIcon />
|
||
|
|
<RootNamespace>PiiRedaction.TestHarness.Wpf</RootNamespace>
|
||
|
|
<AssemblyName>PiiRedaction.TestHarness.Wpf</AssemblyName>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\PiiRedaction.Core\PiiRedaction.Core.csproj" />
|
||
|
|
<ProjectReference Include="..\PiiRedaction.Infrastructure\PiiRedaction.Infrastructure.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.9" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.9" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.9" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.9" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<None Update="appsettings.json">
|
||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
|
</None>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|