-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (34 loc) · 1.7 KB
/
Directory.Build.props
File metadata and controls
35 lines (34 loc) · 1.7 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
<Project>
<PropertyGroup>
<Version>2.0.0-preview3</Version>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>http://www.mudtools.cn/</PackageProjectUrl>
<RepositoryUrl>https://github.com/mudtools/MudCodeGenerator</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>Mud;MudTools;Roslyn;SourceGenerator;CodeGenerator;代码生成器;ASP.NET;ASP.NET Core;.NET;.NET Core;</PackageTags>
<NoDefaultExcludes>true</NoDefaultExcludes>
<Copyright>© 2019-2025 Mud Studio Co.,Ltd.</Copyright>
<Authors>Mud Studio</Authors>
<Company>Mud Studio</Company>
<LangVersion>latest</LangVersion>
<NoWarn>CA1707;CA1021;CA1822;RS1035</NoWarn>
<AnalyzerLanguage>cs</AnalyzerLanguage>
<InjectIsExternalInitOnLegacy>true</InjectIsExternalInitOnLegacy>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
<BaseOutputPath>..\bin</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin/Debug/$(TargetFramework)/$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DocumentationFile>bin/Release/$(TargetFramework)/$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
</Project>