Skip to content

Commit

Permalink
🔧 Fix building UI app
Browse files Browse the repository at this point in the history
  • Loading branch information
pleonex committed Nov 11, 2023
1 parent 66c3bf3 commit 4f704c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.csx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public sealed class BuildLifetime : FrostingLifetime<PleOpsBuildContext>
context.DotNetContext.ApplicationProjects.Add(new ProjectPublicationInfo(
"./src/PlayMobic.Tool", new[] { "win-x64", "linux-x64", "osx-x64" }, "net6.0"));
context.DotNetContext.ApplicationProjects.Add(new ProjectPublicationInfo(
"./src/PlayMobic.UI", new[] { "win-x64", "linux-x64", "osx-x64"}, "net6.0"))
"./src/PlayMobic.UI", new[] { "win-x64", "linux-x64", "osx-x64" }, "net6.0"));

// Update build parameters from command line arguments.
context.ReadArguments();
Expand Down
5 changes: 4 additions & 1 deletion src/PlayMobic.UI/PlayMobic.UI.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<IsPublishable>true</IsPublishable>

<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<SelfContained>false</SelfContained>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>

<Nullable>enable</Nullable>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>

Expand Down

0 comments on commit 4f704c1

Please sign in to comment.