generated from OoLunar/DSharpPlus.Template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.Build.props
29 lines (29 loc) · 1.34 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Nullable>enable</Nullable>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<TargetFramework>net8.0</TargetFramework>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<Authors>OoLunar</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/OoLunar/HyperSharp</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<ProjectRoot>$(MSBuildThisFileDirectory)</ProjectRoot>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/OoLunar/HyperSharp</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="$(ProjectRoot)/res/*.png" Pack="true" PackagePath=""/>
<EmbeddedResource Include="$(ProjectRoot)/LICENSE" Pack="true" PackagePath=""/>
<EmbeddedResource Include="$(ProjectRoot)/README.md" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>