forked from imurvai/brickcontroller2
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (36 loc) · 1.35 KB
/
Copy pathDirectory.Build.props
File metadata and controls
36 lines (36 loc) · 1.35 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
<Project>
<PropertyGroup>
<SingleProject>false</SingleProject>
<UseMaui>true</UseMaui>
<LangVersion>latest</LangVersion>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<Nullable>enable</Nullable>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(RootNamespace)' == ''">
<RootNamespace>$(MSBuildProjectName)</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Tests'))">
<!-- Define properties specific to test projects -->
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<!--App information-->
<PropertyGroup>
<ApplicationDisplayVersion>2026.2</ApplicationDisplayVersion>
<ApplicationVersion>50</ApplicationVersion>
</PropertyGroup>
<!--Language information-->
<PropertyGroup>
<NeutralLanguage>en</NeutralLanguage>
<DefaultLanguage>en</DefaultLanguage>
<SatelliteResourceLanguages>de;hu</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<SupportedCultures Include="en" />
<SupportedCultures Include="de" />
<SupportedCultures Include="hu" />
</ItemGroup>
</Project>