forked from imurvai/brickcontroller2
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (26 loc) · 1.03 KB
/
Directory.Build.props
File metadata and controls
26 lines (26 loc) · 1.03 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
<Project>
<PropertyGroup>
<SingleProject>false</SingleProject>
<UseMaui>true</UseMaui>
<LangVersion>latest</LangVersion>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<Nullable>enable</Nullable>
<NeutralLanguage>en-US</NeutralLanguage>
<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>3.4</ApplicationDisplayVersion>
<ApplicationVersion>50</ApplicationVersion>
</PropertyGroup>
</Project>