forked from ShareX/ShareX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.build.props
25 lines (25 loc) · 1.17 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
<Project>
<PropertyGroup>
<Company>ShareX Team</Company>
<Product>ShareX</Product>
<Copyright>Copyright (c) 2007-2024 ShareX Team</Copyright>
<Version>16.0.2</Version>
<EmbeddedResourceUseDependentUponConvention>true</EmbeddedResourceUseDependentUponConvention>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Configurations>Release;Debug;Steam;MicrosoftStore;MicrosoftStoreDebug</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Steam'">
<DefineConstants>$(DefineConstants);STEAM</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'MicrosoftStore'">
<DefineConstants>$(DefineConstants);RELEASE;MICROSOFTSTORE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'MicrosoftStoreDebug'">
<DefineConstants>$(DefineConstants);DEBUG;MICROSOFTSTORE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
</PropertyGroup>
</Project>