-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcommon.props
59 lines (51 loc) · 2.47 KB
/
common.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
56
57
58
59
<!-- Modify this file to change assembly information.
WARNING: DO NOT MODIFY this file unless you have created a backup copy.
Incorrect changes to this file will make it impossible to load or build your
projects from the command-line or the IDE. -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Defines common/shared assembly and NuGet package metadata. Typical
properties are:
$(Product)
$(Company)
$(Copyright)
-->
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Product>Cadru Framework</Product>
<RepositoryUrl>https://github.com/scottdorman/cadru</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Authors>Scott Dorman</Authors>
<Company>Scott Dorman</Company>
<Copyright>Copyright (c) Scott Dorman</Copyright>
<PackageLicenseExpression>MS-PL</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/scottdorman/cadru</PackageProjectUrl>
<CommonPackageTags>cadru .NET Core .NETCore dotnet dotnetcore .NETStandard dotnetstandard</CommonPackageTags>
<SourceLinkCreate>true</SourceLinkCreate>
<VersionRevision Condition="'$(APPVEYOR_BUILD_NUMBER)' != ''">$(APPVEYOR_BUILD_NUMBER)</VersionRevision>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>$(MSBuildProjectName).xml</DocumentationFile>
</PropertyGroup>
<!-- Defines properties which help customize the version update process. -->
<PropertyGroup>
<GenerateReleaseNotes Condition="'$(GenerateReleaseNotes)' == ''">false</GenerateReleaseNotes>
<GenerateAssemblyBuildDateAttribute Condition="'$(GenerateAssemblyBuildDateAttribute)' == ''">true</GenerateAssemblyBuildDateAttribute>
<VersionStrategy Condition="'$(VersionStrategy)' == ''">ShortDate</VersionStrategy>
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);CS1591;CS1573;</NoWarn>
</PropertyGroup>
<PropertyGroup>
<SourceLinkCreate>true</SourceLinkCreate>
<RepositoryUrl>https://github.com/scottdorman/cadru</RepositoryUrl>
</PropertyGroup>
<!-- The UpdateReleaseNotes target expects a single XML file as input and
one or more destination folders as output, as defined by the ItemGroup.
Uncomment this item group and change the path as necessary. -->
<ItemGroup>
<None Include="$(SolutionDir)\Cadru.licenseheader" Link="Cadru.licenseheader" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Validation" Version="2.5.42" PrivateAssets="all" />
</ItemGroup>
</Project>