-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModShardPackerReference.csproj
More file actions
36 lines (31 loc) · 1.29 KB
/
ModShardPackerReference.csproj
File metadata and controls
36 lines (31 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>1.0.3</Version>
<Optimize>true</Optimize>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>zizani</Authors>
<PackageTags>msl</PackageTags>
<PackageProjectUrl>https://github.com/ModShardTeam/ModShardPackerReference</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.7.0"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.7.0"/>
<PackageReference Include="Serilog" Version="3.1.1"/>
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1"/>
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0"/>
</ItemGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/ModShardTeam/ModShardPackerReference</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<ProjectUrl>https://github.com/ModShardTeam/ModShardPackerReference</ProjectUrl>
</PropertyGroup>
</Project>