Skip to content

Commit

Permalink
Fix Maui Build
Browse files Browse the repository at this point in the history
  • Loading branch information
VladislavAntonyuk committed Apr 2, 2023
1 parent 90835c9 commit 800a822
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
21 changes: 14 additions & 7 deletions templates/BlazorMauiShared/App1.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,31 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App1Client", "App1Client\App1Client.csproj", "{5FB94F7D-02B8-41FB-A09E-FDE6C57E49B5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App1Client", "App1Client\App1Client.csproj", "{5FB94F7D-02B8-41FB-A09E-FDE6C57E49B5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App1Shared", "App1Shared\App1Shared.csproj", "{17BF8A0D-2B30-4572-8258-2884E3525D96}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App1Shared", "App1Shared\App1Shared.csproj", "{17BF8A0D-2B30-4572-8258-2884E3525D96}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App1Web", "App1Web\App1Web.csproj", "{A5D78BBD-E7EF-4218-BC97-0CEA04305BCA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App1Web", "App1Web\App1Web.csproj", "{A5D78BBD-E7EF-4218-BC97-0CEA04305BCA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App1WebAssembly", "App1WebAssembly\App1WebAssembly.csproj", "{4FA8B3F0-1C8F-4CAA-BBE7-EA4FDBAFE159}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App1WebAssembly", "App1WebAssembly\App1WebAssembly.csproj", "{4FA8B3F0-1C8F-4CAA-BBE7-EA4FDBAFE159}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0D9F0788-E0A6-4CA2-8498-A40621C21C64}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5FB94F7D-02B8-41FB-A09E-FDE6C57E49B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5FB94F7D-02B8-41FB-A09E-FDE6C57E49B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5FB94F7D-02B8-41FB-A09E-FDE6C57E49B5}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{5FB94F7D-02B8-41FB-A09E-FDE6C57E49B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5FB94F7D-02B8-41FB-A09E-FDE6C57E49B5}.Release|Any CPU.Build.0 = Release|Any CPU
{5FB94F7D-02B8-41FB-A09E-FDE6C57E49B5}.Release|Any CPU.Deploy.0 = Release|Any CPU
{17BF8A0D-2B30-4572-8258-2884E3525D96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{17BF8A0D-2B30-4572-8258-2884E3525D96}.Debug|Any CPU.Build.0 = Debug|Any CPU
{17BF8A0D-2B30-4572-8258-2884E3525D96}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -37,4 +41,7 @@ Global
{4FA8B3F0-1C8F-4CAA-BBE7-EA4FDBAFE159}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4FA8B3F0-1C8F-4CAA-BBE7-EA4FDBAFE159}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
12 changes: 12 additions & 0 deletions templates/BlazorMauiShared/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>

<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
</PropertyGroup>
</Project>

0 comments on commit 800a822

Please sign in to comment.