-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (31 loc) · 1.33 KB
/
Directory.Build.props
File metadata and controls
36 lines (31 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
36
<Project>
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
<PropertyGroup>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Features>strict</Features>
<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.Client</PackageProjectUrl>
<RepositoryUrl>https://github.com/TwitchLib/TwitchLib.Client</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>twitch library irc chat c# csharp api events net</PackageTags>
<PackageReleaseNotes>a lot of changes</PackageReleaseNotes>
<VersionPrefix>4.0.1</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<FileVersion>$(VersionPrefix)</FileVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="..\twitchlib.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>