forked from barclayadam/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
29 lines (23 loc) · 1.05 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
<Project>
<PropertyGroup>
<!--
$(MSBuildAllProjects) is a list of files that determine if a project is up-to-date or not. By including this
file in the list, it ensures that all projects will be rebuilt if it changes.
-->
<MsBuildAllProjects>$(MsBuildAllProjects);$(MsBuildThisFileFullPath)</MsBuildAllProjects>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Product>Blueprint</Product>
<Authors>Adam Barclay,Michael Taylor</Authors>
<DefaultLanguage>en-GB</DefaultLanguage>
<NeutralLanguage>en-GB</NeutralLanguage>
<RepositoryUrl>https://github.com/barclayadam/blueprint.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>master</RepositoryBranch>
<DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers"/>
</ItemGroup>
</Project>