-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModShardUnpacker.csproj
More file actions
48 lines (41 loc) · 1.65 KB
/
ModShardUnpacker.csproj
File metadata and controls
48 lines (41 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
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.0</Version>
<PackAsTool>true</PackAsTool>
<ToolCommandName>msu</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>zizani</Authors>
<PackageTags>msl;cli</PackageTags>
<PackageProjectUrl>https://github.com/ModShardTeam/ModShardUnpacker</PackageProjectUrl>
<Description>A cli tool to unpack a sml file into a mod source.</Description>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="dnlib" Version="4.4.0"/>
<PackageReference Include="CommandLineParser" Version="2.8.0"/>
<PackageReference Include="ICSharpCode.Decompiler" Version="8.2.0.7535"/>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1"/>
<PackageReference Include="System.Drawing.Common" Version="8.0.6"/>
</ItemGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/ModShardTeam/ModShardUnpacker</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<ProjectUrl>https://github.com/ModShardTeam/ModShardUnpacker</ProjectUrl>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
</Project>