-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (23 loc) · 1.12 KB
/
Directory.Build.props
File metadata and controls
27 lines (23 loc) · 1.12 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
<Project>
<PropertyGroup>
<!-- Root directory of the code base. Do not set this anywhere else. -->
<EnlistmentRoot>$(MSBuildThisFileDirectory)</EnlistmentRoot>
<!-- No need to warn about using preview .NET SDKs, we want to test against them. -->
<SuppressNETCoreSdkPreviewMessages>true</SuppressNETCoreSdkPreviewMessages>
<!-- Use artifacts output. Packages will be in $(PackageOutputPath) or artifacts/package/$(Configuration) -->
<UseArtifactsOutput>true</UseArtifactsOutput>
<!-- Use latest C# version -->
<LangVersion>latest</LangVersion>
<!-- Common project properties -->
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<PackageProjectUrl>https://github.com/microsoft/dacfx</PackageProjectUrl>
<PackageIcon>nuspecicon.png</PackageIcon>
<RepositoryUrl>https://github.com/microsoft/DacFx</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Include="$(EnlistmentRoot)\images\nuspecicon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>