26 lines
783 B
XML
26 lines
783 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ApplicationIcon>libation.ico</ApplicationIcon>
|
|
<AssemblyName>Libation</AssemblyName>
|
|
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<!-- <PublishSingleFile>true</PublishSingleFile> -->
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LibationWinForms\LibationWinForms.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |