-
Notifications
You must be signed in to change notification settings - Fork 0
/
SYSCOM.csproj
48 lines (41 loc) · 1.58 KB
/
SYSCOM.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>TerminalGuiApp</RootNamespace>
<Version>0.0.5-beta</Version>
<PackageId>SYSCOM</PackageId>
<Title>SYSCOM</Title>
<Authors>Vittoria Italia Azzurra Libera</Authors>
<Copyright>MIT License Copyright (c) 2024 Vittoria</Copyright>
<PackageProjectUrl>https://vittoriaalata.github.io/VWS/SYSCOM</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/VittoriaAlata/SYSCOM/</RepositoryUrl>
<PackageIcon>SYSCOM_logo.png</PackageIcon>
<PackageReleaseNotes>TUI Version</PackageReleaseNotes>
<PackAsTool>True</PackAsTool>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<IncludeSymbols>False</IncludeSymbols>
<ApplicationIcon>SYSCOM_logo.ico</ApplicationIcon>
<SignAssembly>False</SignAssembly>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include="SYSCOM_logo.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Terminal.Gui" Version="2.0.0-v2-develop.1" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>