-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
39 lines (35 loc) · 1.78 KB
/
Directory.Build.props
File metadata and controls
39 lines (35 loc) · 1.78 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
36
37
38
39
<Project>
<PropertyGroup Label="Compilation Metadata">
<TargetFramework>net6.0</TargetFramework>
<LangVersion>12.0</LangVersion>
</PropertyGroup>
<PropertyGroup Label="Assembly Metadata">
<AssemblyVersion>$([System.Text.RegularExpressions.Regex]::Match($(Version), '\d+\.\d+').Value)</AssemblyVersion>
<FileVersion>$([System.Text.RegularExpressions.Regex]::Match($(Version), '\d+\.\d+.\d+').Value)</FileVersion>
<Company>CluedIn ApS</Company>
<Copyright>Copyright (c) 2021 $(Company). All rights reserved.</Copyright>
<Product>CluedIn</Product>
<AssemblyTitle>$(MSBuildProjectName)</AssemblyTitle>
<AssemblyName>$(Product).$(AssemblyTitle)</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
</PropertyGroup>
<PropertyGroup Label="Package Metadata">
<Title>$(RootNamespace)</Title>
<Authors>$(Company)</Authors>
<!-- TODO: Licensing -->
<!-- <PackageLicenseFile> if not using an open source license should be set to the path of a license _in_ the package -->
<!-- <PackageRequireLicenseAcceptance> should be set to true if a license is included -->
<PackageProjectUrl>http://cluedin.com</PackageProjectUrl>
<PackageIcon>nugetlogo.png</PackageIcon>
</PropertyGroup>
<ItemGroup Label="Package Includes">
<None Include="$(MSBuildThisFileDirectory)build\assets\nugetlogo.png" Pack="true" PackagePath="\" />
</ItemGroup>
<!--
We need this to stop build from producing .deps.json files that contains "ReferencedProject.Reference".
It will cause exceptions in CluedIn Server, saying that the item has already been added (ReferencedProject.dll)
-->
<PropertyGroup Label="FixBuildDefault">
<IncludeProjectsNotInAssetsFileInDepsFile>false</IncludeProjectsNotInAssetsFileInDepsFile>
</PropertyGroup>
</Project>