-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModShardChecksum.csproj
More file actions
42 lines (36 loc) · 1.58 KB
/
Copy pathModShardChecksum.csproj
File metadata and controls
42 lines (36 loc) · 1.58 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
<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>msc</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/ModShardChecksum</PackageProjectUrl>
<Description>A cli tool to compute MD5 checksum for .win files.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.7.0"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.7.0"/>
<PackageReference Include="CommandLineParser" Version="2.8.0"/>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1"/>
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/ModShardTeam/ModShardChecksum</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<ProjectUrl>https://github.com/ModShardTeam/ModShardChecksum</ProjectUrl>
</PropertyGroup>
</Project>