-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (28 loc) · 1.38 KB
/
Copy pathDirectory.Build.props
File metadata and controls
30 lines (28 loc) · 1.38 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
<Project>
<PropertyGroup>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ImplicitUsings>true</ImplicitUsings>
<LangVersion>latest</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<Nullable>enable</Nullable>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<Authors>Adrian Hall</Authors>
<Company>Adrian Hall</Company>
<Copyright>Copyright (c) 2025 Adrian Hall</Copyright>
<LicenseUrl>https://github.com/adrianhall/azurite-ui/blob/main/LICENSE.md</LicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/adrianhall/azurite-ui</PackageProjectUrl>
<PackageTags>azurite;console</PackageTags>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<ProjectUrl>https://github.com/adrianhall/azurite-ui</ProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryUrl>https://github.com/adrianhall/azurite-ui</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\README.md" PackagePath="README.md" Pack="True" />
<None Include="$(MSBuildThisFileDirectory)\LICENSE.md" PackagePath="LICENSE.md" Pack="True" />
</ItemGroup>
</Project>