-
Notifications
You must be signed in to change notification settings - Fork 0
/
cilout.csproj
35 lines (30 loc) · 1.3 KB
/
cilout.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<VersionPrefix>1.2.0</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<Copyright>Sebastien Pouliot</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Sebastien Pouliot</Authors>
<PackageTags>tool;il;metadata</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/spouliot/cilout/blob/master/ChangeLog.md</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/spouliot/cilout</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/README.md" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
<PackageReference Include="plist-cil" Version="2.2.0" />
<PackageReference Include="Spectre.Console" Version="0.45.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.45.0" />
</ItemGroup>
</Project>