This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
UpTool2/UpToolCLI/UpToolCLI.csproj

25 lines
726 B
XML
Raw Normal View History

2020-03-24 20:53:23 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyName>uptool</AssemblyName>
2020-04-08 17:56:54 +02:00
<Deterministic>false</Deterministic>
<AssemblyVersion>1.0.*</AssemblyVersion>
2020-03-24 20:53:23 +01:00
</PropertyGroup>
2020-03-24 21:27:41 +01:00
<PropertyGroup>
<ApplicationIcon>..\UpTool2.ico</ApplicationIcon>
</PropertyGroup>
2020-03-24 20:53:23 +01:00
<ItemGroup>
2020-06-21 16:46:34 +02:00
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-rc0003" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20303.1" />
2020-03-24 20:53:23 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\UpToolLib\UpToolLib.csproj" />
</ItemGroup>
</Project>