-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspam.csproj
More file actions
37 lines (37 loc) · 1.65 KB
/
spam.csproj
File metadata and controls
37 lines (37 loc) · 1.65 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<NoWarn>NU1701</NoWarn>
<Nullable>enable</Nullable>
<AssemblyName>Textie</AssemblyName>
<RootNamespace>Textie</RootNamespace>
<Description>Smart Text Automation Tool with Beautiful UI</Description>
<Company>Renbkna</Company>
<Product>Textie</Product>
<Copyright>Copyright © 2024</Copyright>
<Version>2.0.0</Version>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<!-- Extreme Optimization -->
<PublishAot>true</PublishAot>
<StripSymbols>true</StripSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.51.1" />
<PackageReference Include="Spectre.Console.Cli" Version="0.51.1" />
<PackageReference Include="Spectre.Console.ImageSharp" Version="0.51.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.9" />
<PackageReference Include="NCrontab" Version="3.4.0" />
<PackageReference Include="Vanara.PInvoke.User32" Version="4.2.1" />
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests\**\*.cs" />
<None Remove="Tests\**\*" />
</ItemGroup>
</Project>