-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
56 lines (50 loc) · 2.13 KB
/
Directory.Build.props
File metadata and controls
56 lines (50 loc) · 2.13 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Dependencies.props" Condition="Exists('Dependencies.props')" />
<PropertyGroup>
<BuildInParallel>true</BuildInParallel>
<UseMultiToolTask>true</UseMultiToolTask>
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
<DisableRuntimeMarshaling>true</DisableRuntimeMarshaling>
<Deterministic>true</Deterministic>
<Platforms>x64</Platforms>
<Platform Condition="'$(Platform)' == ''">x64</Platform>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<WindowsAppSDKWinUI>true</WindowsAppSDKWinUI>
<UseWinUI>true</UseWinUI>
<EnableMsixTooling>true</EnableMsixTooling>
<WindowsPackageType>None</WindowsPackageType>
</PropertyGroup>
<PropertyGroup>
<Product>Server App Desktop</Product>
<AssemblyTitle>Server App Desktop (Preview)</AssemblyTitle>
<Authors>Prof Minecraft</Authors>
<Company>Prof Minecraft</Company>
<Description>Servidor de escritorio con interfaz WinUI 3</Description>
<Copyright>Copyright © 2026</Copyright>
<Version>1.0.0.3-preview</Version>
</PropertyGroup>
<PropertyGroup>
<GenerateProjectSpecificOutputFolder>true</GenerateProjectSpecificOutputFolder>
<BaseOutputPath>$(SolutionDir)export\bin\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)$(Platform)\$(Configuration)</OutputPath>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<TieredCompilation>true</TieredCompilation>
<TieredCompilationQuickJit>true</TieredCompilationQuickJit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<Optimize>false</Optimize>
<IncrementalBuild>true</IncrementalBuild>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
</Project>