Skip to content

Commit

Permalink
Bump version, add/edit project meta data, exclude debug symbols from …
Browse files Browse the repository at this point in the history
…release builds.
  • Loading branch information
mpaperno committed Apr 18, 2022
1 parent 89a81c4 commit 18c9647
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions TouchPortalSDK/TouchPortalSDK.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>0.40.0-mp</Version>
<Authors>Oddbjørn U. Bakke</Authors>
<PackageProjectUrl>https://github.com/oddbear/TouchPortalSDK</PackageProjectUrl>
<RepositoryUrl>https://github.com/oddbear/TouchPortalSDK</RepositoryUrl>
<TargetFramework>net5.0</TargetFramework>
<Version>0.43.0-mp</Version>
<Authors>Oddbjørn U. Bakke, Maxim Paperno</Authors>
<PackageProjectUrl>https://github.com/mpaperno/TouchPortalSDK</PackageProjectUrl>
<RepositoryUrl>https://github.com/mpaperno/TouchPortalSDK</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<Description>Touch Portal SDK for making plugins in .Net</Description>
<PackageIcon></PackageIcon>
<Description>Touch Portal API for making plugins in .Net</Description>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
<RepositoryType>git</RepositoryType>
<Company />
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.2" />
</ItemGroup>

<ItemGroup>
<None Include="..\icon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>

0 comments on commit 18c9647

Please sign in to comment.