-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathDirectory.build.props
More file actions
35 lines (35 loc) · 1.59 KB
/
Directory.build.props
File metadata and controls
35 lines (35 loc) · 1.59 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
28
29
30
31
32
33
34
35
<Project>
<PropertyGroup>
<Company>ShareX Team</Company>
<Product>ShareX</Product>
<Copyright>Copyright (c) 2007-2026 ShareX Team</Copyright>
<Version>20.0.2</Version>
<EmbeddedResourceUseDependentUponConvention>true</EmbeddedResourceUseDependentUponConvention>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendPlatformToOutputPath>false</AppendPlatformToOutputPath>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Configurations>Release;Debug;Steam;MicrosoftStore;MicrosoftStoreDebug</Configurations>
<Platforms>x64;ARM64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == 'x64'">
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == 'ARM64'">
<RuntimeIdentifier>win-arm64</RuntimeIdentifier>
<PlatformTarget>ARM64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Steam'">
<DefineConstants>$(DefineConstants);STEAM</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'MicrosoftStore'">
<DefineConstants>$(DefineConstants);MicrosoftStore</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'MicrosoftStoreDebug'">
<DefineConstants>$(DefineConstants);DEBUG;MicrosoftStore</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
</PropertyGroup>
</Project>