-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.props
29 lines (22 loc) · 1.02 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>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
</PropertyGroup>
<PropertyGroup>
<IconIcoPath>$(RepoRoot)\Icon.ico</IconIcoPath>
</PropertyGroup>
<PropertyGroup>
<LangVersion>Latest</LangVersion>
<Nullable>Enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<PackageVersion>0.3.0-beta.4</PackageVersion>
<PackageVersionSuffix Condition="'$(APPVEYOR)' == 'True'">-build.$(APPVEYOR_BUILD_NUMBER)+$(APPVEYOR_REPO_COMMIT.Substring(0, 7))</PackageVersionSuffix>
<PackageVersionSuffix Condition="'$(PackageVersionSuffix)' == '' AND '$(DesignTimeBuild)' != 'True'">-localbuild$([System.DateTime]::Now.ToString("yyyyMMddHHmmss"))</PackageVersionSuffix>
<PackageVersionSuffix Condition="'$(APPVEYOR_REPO_TAG)' == 'True'"></PackageVersionSuffix>
</PropertyGroup>
<ItemGroup>
<Folder Include="Properties" />
</ItemGroup>
<Import Project="build\Targets\Import.props" />
</Project>