forked from TwitchLib/TwitchLib.Api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (30 loc) · 1.33 KB
/
Copy pathDirectory.Build.props
File metadata and controls
35 lines (30 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project>
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
<PropertyGroup>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
<TargetFrameworks>netstandard2.0;net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<!--Package-->
<PropertyGroup>
<Authors>swiftyspiffy, Prom3theu5, Syzuna, LuckyNoS7evin</Authors>
<Copyright>Copyright 2025</Copyright>
<PackageIcon>twitchlib.png</PackageIcon>
<PackageProjectUrl>https://github.com/TwitchLib/TwitchLib.Api</PackageProjectUrl>
<RepositoryUrl>https://github.com/TwitchLib/TwitchLib.Api</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>twitch library chat c# csharp api events pubsub net</PackageTags>
<PackageReleaseNotes>a lot of changes</PackageReleaseNotes>
<VersionPrefix>3.10.3</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<FileVersion>$(VersionPrefix)</FileVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="..\twitchlib.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>