File tree Expand file tree Collapse file tree 3 files changed +38
-23
lines changed Expand file tree Collapse file tree 3 files changed +38
-23
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+ <PropertyGroup >
3+ <OutputType >WinExe</OutputType >
4+ <TargetFramework >netcoreapp3.1</TargetFramework >
5+ </PropertyGroup >
6+
7+ <ItemGroup >
8+ <PackageReference Include =" Eto.Forms" Version =" 2.5.10" />
9+ </ItemGroup >
10+
11+ <Choose >
12+ <When Condition =" $(RuntimeIdentifier) != ''" >
13+ <ItemGroup >
14+ <PackageReference Condition =" $(RuntimeIdentifier.StartsWith('win'))" Include =" Eto.Platform.Wpf" Version =" 2.5.10" />
15+ <PackageReference Condition =" $(RuntimeIdentifier.StartsWith('osx'))" Include =" Eto.Platform.Mac64" Version =" 2.5.10" />
16+ <PackageReference Condition =" $(RuntimeIdentifier.StartsWith('linux'))" Include =" Eto.Platform.Gtk" Version =" 2.5.10" />
17+ </ItemGroup >
18+ </When >
19+ <Otherwise >
20+ <ItemGroup >
21+ <PackageReference Condition =" $([MSBuild]::IsOSPlatform('Windows'))" Include =" Eto.Platform.Wpf" Version =" 2.5.10" />
22+ <PackageReference Condition =" $([MSBuild]::IsOSPlatform('OSX'))" Include =" Eto.Platform.Mac64" Version =" 2.5.10" />
23+ <PackageReference Condition =" $([MSBuild]::IsOSPlatform('Linux'))" Include =" Eto.Platform.Gtk" Version =" 2.5.10" />
24+ </ItemGroup >
25+ </Otherwise >
26+ </Choose >
27+
28+ <ItemGroup >
29+ <Compile Include =" ..\CSharp\FastNoiseLite.cs" Link =" FastNoiseLite.cs" />
30+ </ItemGroup >
31+ </Project >
Original file line number Diff line number Diff line change 1+ dotnet publish -o .\publish -c Release -r win-x64 --no-self-contained /p:PublishSingleFile=true /p:AssemblyName=FastNoiseLiteGUI-Win64
2+
3+ dotnet publish -o .\publish -c Release -r linux-x64 --no-self-contained /p:PublishSingleFile=true /p:AssemblyName=FastNoiseLiteGUI-Linux64
4+
5+ dotnet publish -o .\publish -c Release -r osx-x64 --no-self-contained /p:MacBundleDotNet=False /p:PublishSingleFile=true /p:AssemblyName=FastNoiseLiteGUI-OSX64
6+
7+ pause
You can’t perform that action at this time.
0 commit comments