|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.0;netstandard2.1;net8.0</TargetFrameworks> |
5 | | - <ImplicitUsings>enable</ImplicitUsings> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <LangVersion>latest</LangVersion> |
8 | | - <PackageId>TwitchLib.Client.Models</PackageId> |
9 | | - <VersionPrefix>4.0.1</VersionPrefix> |
10 | | - <VersionSuffix>$(VersionSuffix)</VersionSuffix> |
| 4 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;net9.0</TargetFrameworks> |
11 | 5 | <Description>Project contains all of the models used in TwitchLib.Client.</Description> |
12 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
13 | | - <Authors>swiftyspiffy, Prom3theu5, Syzuna, LuckyNoS7evin</Authors> |
14 | | - <PackageIconUrl>https://cdn.syzuna-programs.de/images/twitchlib.png</PackageIconUrl> |
15 | | - <PackageProjectUrl>https://github.com/TwitchLib/TwitchLib.Client</PackageProjectUrl> |
16 | | - <PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl> |
17 | | - <Copyright>Copyright 2023</Copyright> |
18 | | - <PackageReleaseNotes>Incremental changes. See commit history.</PackageReleaseNotes> |
19 | | - <RepositoryUrl>https://github.com/TwitchLib/TwitchLib.Client</RepositoryUrl> |
20 | | - <RepositoryType>Git</RepositoryType> |
21 | | - <PackageTags>twitch library irc chat c# csharp api events pubsub net standard 2.0</PackageTags> |
22 | | - <NeutralLanguage>en-US</NeutralLanguage> |
23 | | - <AssemblyVersion>$(VersionPrefix)</AssemblyVersion> |
24 | | - <FileVersion>$(VersionPrefix)</FileVersion> |
25 | | - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
26 | 6 | </PropertyGroup> |
| 7 | + |
27 | 8 | <ItemGroup> |
28 | 9 | <ProjectReference Include="..\TwitchLib.Client.Enums\TwitchLib.Client.Enums.csproj" /> |
29 | 10 | </ItemGroup> |
| 11 | + |
30 | 12 | <ItemGroup> |
31 | 13 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
32 | 14 | <!-- This is a punishment for worshiping wrong gods of abstraction --> |
|
36 | 18 | <_Parameter1>TwitchLib.Client.Test</_Parameter1> |
37 | 19 | </AssemblyAttribute> |
38 | 20 | </ItemGroup> |
| 21 | + |
39 | 22 | <ItemGroup> |
40 | | - <PackageReference Include="System.Memory" Version="4.5.5" /> |
| 23 | + <PackageReference Include="System.Memory" Version="4.5.5" Condition="$(TargetFramework) == 'netstandard2.0'" /> |
41 | 24 | </ItemGroup> |
| 25 | + |
42 | 26 | </Project> |
0 commit comments