-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (24 loc) · 1.06 KB
/
Directory.Build.props
File metadata and controls
24 lines (24 loc) · 1.06 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>sunny</Authors>
<RootNamespace>CommonCrawl</RootNamespace>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/m67186636/CommonCrawl.Net</RepositoryUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<Pack>false</Pack>
</PropertyGroup>
<ItemGroup Condition=" '$(Pack)' == 'true' ">
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="README.ja-JP.md" Pack="true" PackagePath="" />
<None Include="README.fr-FR.md" Pack="true" PackagePath="" />
<None Include="README.zh-CN.md" Pack="true" PackagePath="" />
<None Include="logo.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>