Skip to content

Commit

Permalink
Clean up csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
xobust committed Oct 30, 2023
1 parent 592b46c commit bc26c11
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions src/CoreRCON/CoreRCON.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
<PropertyGroup>
<Description>A .NET Standard implementation of the Source RCON Protocol.</Description>
<AssemblyTitle>CoreRCON</AssemblyTitle>
<VersionPrefix>2.0.0</VersionPrefix>
<Authors>Alexander Westberg-Bladh Scott Kaye</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<AssemblyName>CoreRCON</AssemblyName>
<OutputType>Library</OutputType>
<PackageId>CoreRCON</PackageId>
Expand All @@ -20,21 +19,14 @@
<Version>5.2.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>5.2.0</AssemblyVersion>
<FileVersion>5.2.0.0</FileVersion>
<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>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>7.2</LangVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<LangVersion>7.2</LangVersion>
</PropertyGroup>
<LangVersion>latest</LangVersion>
</PropertyGroup>

<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
<Exec Command="dotnet pack --no-build --configuration $(Configuration)" />
Expand Down

0 comments on commit bc26c11

Please sign in to comment.