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

23 lines
814 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-02-28 14:26:16 +01:00
<LangVersion>latest</LangVersion>
2019-10-21 15:27:52 +02:00
<Deterministic>false</Deterministic>
2020-02-28 14:26:16 +01:00
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
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>
</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.0.7.1" />
2019-09-29 16:19:57 +02:00
</ItemGroup>
2019-09-08 21:39:04 +02:00
</Project>