31 lines
1020 B
XML
31 lines
1020 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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>
|
|
|
|
<Version>3.1.4.8</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MSBump" Version="2.3.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Octokit" Version="0.36.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LibationWinForms\LibationWinForms.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |