-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoflanArchives.CLI.csproj
29 lines (25 loc) · 1.01 KB
/
RoflanArchives.CLI.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>RoflanArchives.CLI</RootNamespace>
<AssemblyName>RoflanArchives.CLI</AssemblyName>
<Product>RoflanArchives.CLI</Product>
<AssemblyVersion>1.6.2.0</AssemblyVersion>
<FileVersion>1.6.2.0</FileVersion>
<Version>1.6.2</Version>
<Description>CLI tool for pack/unpack/modify/etc. roflan engine archive files (*.roflarc)</Description>
</PropertyGroup>
<ItemGroup>
<TrimmerRootAssembly Include="RoflanArchives.Core" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ConsoleAppFramework" Version="5.2.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="RoflanArchives.Core" Version="1.6.2" />
</ItemGroup>
</Project>