forked from microsoft/DacFx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
21 lines (19 loc) · 918 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<PropertyGroup>
<!-- Root directory of the code base. Do not set this anywhere else. -->
<EnlistmentRoot>$(MSBuildThisFileDirectory)</EnlistmentRoot>
<!-- 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>
<!-- Microsoft.Build.Sql SDK will use DLLs from this version of DacFx Nuget. -->
<DacFxPackageVersion Condition="'$(DacFxPackageVersion)' == ''">162.3.566</DacFxPackageVersion>
</PropertyGroup>
<ItemGroup>
<None Include="$(EnlistmentRoot)\images\nuspecicon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>