-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglyph.csproj
31 lines (27 loc) · 1013 Bytes
/
glyph.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.2.2</Version>
<RuntimeIdentifiers>linux-x64;win-x64;osx-x64</RuntimeIdentifiers>
<PublishTrimmed>true</PublishTrimmed>
<PublishReadyToRun>true</PublishReadyToRun>
<Company>DishpitDev</Company>
<Description>The last shell you'll ever use.</Description>
<Authors>DishpitDev</Authors>
<Copyright>© 2025 DishpitDev. All rights reserved.</Copyright>
<ApplicationIcon>assets/icon.ico</ApplicationIcon>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<TrimMode>Link</TrimMode>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<None Remove="assets\icon.ico" />
<Resource Include="assets\icon.ico" />
</ItemGroup>
</Project>