|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <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> |
9 | 9 | <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> |
12 | 22 | </PropertyGroup> |
13 | 23 |
|
14 | 24 | <ItemGroup> |
15 | 25 | <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" /> |
16 | 26 | <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" /> |
17 | 27 | <PackageReference Include="System.Text.Json" Version="6.0.2" /> |
18 | 28 | </ItemGroup> |
19 | | - |
20 | | - <ItemGroup> |
21 | | - <None Include="..\icon.png" Pack="true" PackagePath="" /> |
22 | | - </ItemGroup> |
23 | 29 | </Project> |
0 commit comments