20 lines
550 B
XML
20 lines
550 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<BaseOutputPath>..\</BaseOutputPath>
|
|
<AppendTargetFrameworkToOutputPath>output</AppendTargetFrameworkToOutputPath>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DH.Commons.Devies\DH.Commons.Devies.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|