Skip to content

Commit 18c9647

Browse files
committed
Bump version, add/edit project meta data, exclude debug symbols from release builds.
1 parent 89a81c4 commit 18c9647

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed
Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
5-
<Version>0.40.0-mp</Version>
6-
<Authors>Oddbjørn U. Bakke</Authors>
7-
<PackageProjectUrl>https://github.com/oddbear/TouchPortalSDK</PackageProjectUrl>
8-
<RepositoryUrl>https://github.com/oddbear/TouchPortalSDK</RepositoryUrl>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<Version>0.43.0-mp</Version>
6+
<Authors>Oddbjørn U. Bakke, Maxim Paperno</Authors>
7+
<PackageProjectUrl>https://github.com/mpaperno/TouchPortalSDK</PackageProjectUrl>
8+
<RepositoryUrl>https://github.com/mpaperno/TouchPortalSDK</RepositoryUrl>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
10-
<PackageIcon>icon.png</PackageIcon>
11-
<Description>Touch Portal SDK for making plugins in .Net</Description>
10+
<PackageIcon></PackageIcon>
11+
<Description>Touch Portal API for making plugins in .Net</Description>
12+
<ApplicationIcon />
13+
<OutputType>Library</OutputType>
14+
<StartupObject />
15+
<RepositoryType>git</RepositoryType>
16+
<Company />
17+
</PropertyGroup>
18+
19+
<PropertyGroup Condition="'$(Configuration)'=='Release'">
20+
<DebugType>none</DebugType>
21+
<DebugSymbols>false</DebugSymbols>
1222
</PropertyGroup>
1323

1424
<ItemGroup>
1525
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
1626
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
1727
<PackageReference Include="System.Text.Json" Version="6.0.2" />
1828
</ItemGroup>
19-
20-
<ItemGroup>
21-
<None Include="..\icon.png" Pack="true" PackagePath="" />
22-
</ItemGroup>
2329
</Project>

0 commit comments

Comments
 (0)