-
Notifications
You must be signed in to change notification settings - Fork 1
/
cilurbo.csproj
31 lines (27 loc) · 1.18 KB
/
cilurbo.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>net6.0</TargetFramework>
<RootNamespace>Cilurbo</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<VersionPrefix>0.1.0</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<Copyright>Sebastien Pouliot</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Sebastien Pouliot</Authors>
<PackageTags>tool;decompiler;disassembler</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/spouliot/cilurbo/blob/master/ChangeLog.md</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/spouliot/cilurbo</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CliWrap" Version="3.4.1" />
<PackageReference Include="ICSharpCode.Decompiler" Version="7.2.0.6844" />
<PackageReference Include="Terminal.Gui" Version="1.4.0" />
</ItemGroup>
</Project>