-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
38 lines (33 loc) · 1.5 KB
/
Directory.Build.props
File metadata and controls
38 lines (33 loc) · 1.5 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
37
38
<Project>
<PropertyGroup>
<Version>0.0.0-dev</Version>
<Company>Berry</Company>
<Copyright>Copyright (C) Jerry Berry</Copyright>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<!--<WarningsAsErrors>nullable</WarningsAsErrors>-->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsPackable>false</IsPackable>
<NoWarn>CA1304,RCS1155,CS8620</NoWarn>
</PropertyGroup>
<!-- Disable nullability warnings on frameworks where BCL is not annotated -->
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net472'">
<Nullable>annotations</Nullable>
</PropertyGroup>
<PropertyGroup>
<Authors>$(Company)</Authors>
<PackageTags>anime video manga movie parser scraping crawler gogo zoro kaido flixhq mangadex mangakakalot</PackageTags>
<PackageProjectUrl>https://github.com/jerry08/Juro</PackageProjectUrl>
<!--<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>favicon.png</PackageIcon>-->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
</PropertyGroup>
<!--<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="" Visible="false" />
<None Include="../favicon.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>-->
</Project>