-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCoreRCON.csproj
More file actions
57 lines (52 loc) · 2.4 KB
/
Copy pathCoreRCON.csproj
File metadata and controls
57 lines (52 loc) · 2.4 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
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A .NET Standard implementation of the Source RCON Protocol.</Description>
<AssemblyTitle>CoreRCON</AssemblyTitle>
<Authors>Alexander Westberg-Bladh Scott Kaye</Authors>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<AssemblyName>CoreRCON</AssemblyName>
<OutputType>Library</OutputType>
<PackageId>CoreRCON</PackageId>
<PackageTags>valve;rcon;logaddress;cs2;minecraft;tf2;palworld</PackageTags>
<PackageIconUrl></PackageIconUrl>
<PackageProjectUrl>https://github.com/Challengermode/CoreRcon</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Challengermode/CoreRcon</RepositoryUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AssemblyVersion>5.4.2</AssemblyVersion>
<Version>$(AssemblyVersion)</Version>
<FileVersion>$(AssemblyVersion)</FileVersion>
<PackageReleaseNotes>https://github.com/Challengermode/CoreRcon/releases</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>logo.png</PackageIcon>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<PackageReadmeFile>README.md</PackageReadmeFile>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.2" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.4" />
<PackageReference Include="System.IO.Pipelines" Version="9.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>