-
Notifications
You must be signed in to change notification settings - Fork 20
/
Directory.Build.props
22 lines (20 loc) · 1.03 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
<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>
<DacFxPackageVersion Condition="'$(DacFxPackageVersion)' == ''">162.4.92</DacFxPackageVersion>
<ScriptDomPackageVersion Condition="'$(ScriptDomPackageVersion)' == ''">161.9142.1</ScriptDomPackageVersion>
<SqlClientPackageVersion Condition="'$(SqlClientPackageVersion)' == ''">5.1.6</SqlClientPackageVersion>
</PropertyGroup>
<ItemGroup>
<None Include="$(EnlistmentRoot)\images\nuspecicon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>