forked from mamift/LinqToXsdCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
55 lines (46 loc) · 2.12 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project>
<Import Project="Version.props" />
<!-- Build and design defaults -->
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Xml.Schema.Linq</RootNamespace>
</PropertyGroup>
<!-- Package defaults -->
<PropertyGroup>
<Copyright>Copyright (C) Muhammad Miftah, GitHub Contributors (2019-2022) & Microsoft Corporation (2008-2011)</Copyright>
<Authors>https://github.com/mamift</Authors>
<Company>Microsoft Corporation</Company>
<RepositoryUrl>https://github.com/mamift/LinqToXsdCore</RepositoryUrl>
<PackageId>$(MSBuildProjectName)</PackageId>
<PackageProjectUrl>https://github.com/mamift/LinqToXsdCore</PackageProjectUrl>
<PackageLicense>https://licenses.nuget.org/MS-PL</PackageLicense>
<PackageLicenseExpression>MS-PL</PackageLicenseExpression>
<PackageTags>XSD, XML, Linq, LinqToXsd</PackageTags>
<PackageOutputPath>$(MSBuildProjectDirectory)\nupkg</PackageOutputPath>
<IncludeSymbols>True</IncludeSymbols>
<!-- <SymbolPackageFormat>snupkg</SymbolPackageFormat> -->
<SymbolPackageFormat>symbols.nupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- Disable XML comment warnings -->
<PropertyGroup>
<!--
CS1570: XML comment has badly formed XML - 'End tag 'para' does not match the start tag 'schema'.'
CS1574: XML comment has cref attribute 'xsdFilePath' that could not be resolved
CS1591: Missing XML comment for publicly visible type or member ...
CS1734: XML comment on ... has a paramref tag for ..., but there is no parameter by that name
-->
<NoWarn>$(NoWarn)1570;1574;1591;1734</NoWarn>
</PropertyGroup>
<!-- Pack exisiting README file -->
<PropertyGroup Condition="Exists('$(MSBuildProjectDirectory)\README.md')">
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="Exists('$(MSBuildProjectDirectory)\README.md')">
<None Include="$(MSBuildProjectDirectory)\README.md" Pack="true" PackagePath="" />
</ItemGroup>
<!-- Compiler -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Deterministic>true</Deterministic>
</PropertyGroup>
</Project>