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/UpTool2/UpTool2.csproj

28 lines
995 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2019-09-08 21:39:04 +02:00
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
2019-09-08 21:39:04 +02:00
<OutputType>WinExe</OutputType>
2020-04-08 20:57:50 +02:00
<LangVersion>8</LangVersion>
2019-10-21 15:27:52 +02:00
<Deterministic>false</Deterministic>
2020-02-28 14:26:16 +01:00
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
2020-04-08 17:56:54 +02:00
<Deterministic>false</Deterministic>
<AssemblyVersion>1.0.*</AssemblyVersion>
2019-09-08 21:39:04 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2019-10-21 15:27:52 +02:00
<DebugType>none</DebugType>
2019-09-08 21:39:04 +02:00
</PropertyGroup>
2019-09-09 19:18:33 +02:00
<PropertyGroup>
<StartupObject>UpTool2.Program</StartupObject>
2020-03-24 14:01:52 +01:00
<ApplicationIcon>..\UpTool2.ico</ApplicationIcon>
2019-09-09 19:18:33 +02:00
</PropertyGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
2019-09-29 16:19:57 +02:00
<ItemGroup>
<PackageReference Include="CC-Functions.Misc" Version="1.1.7409.23118" />
2020-03-24 20:53:23 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\UpToolLib\UpToolLib.csproj" />
2019-09-29 16:19:57 +02:00
</ItemGroup>
2019-09-08 21:39:04 +02:00
</Project>