Skip to content

Commit

Permalink
tag parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
goswinr committed Dec 1, 2024
1 parent 4d98bce commit 5afbe11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/releaseStandalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build and Release Standalone
on:
push:
tags:
- '*.*.*'
- '[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
Expand Down
11 changes: 4 additions & 7 deletions FeshStandalone.fsproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<!-- <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> -->
<Project Sdk="Microsoft.NET.Sdk">
<!-- Sdk.WindowsDesktop is needed so that resources work with dotnet build:-->
<!-- Project Sdk= WinDesktop for WPF, it is also needed so that resources work with dotnet build, 'WindowsDesktop' must be included when building for net472 and net6.0-->
<PropertyGroup>
Expand All @@ -10,16 +11,11 @@
<DefineConstants Condition="'$(TargetFramework)' == 'net472'">NETFRAMEWORK</DefineConstants>
<!-- <RuntimeIdentifiers>win-x64;win-x86</RuntimeIdentifiers> -->
<!-- <RuntimeIdentifier>win-x64</RuntimeIdentifier> -->
<Configurations>Release</Configurations>

<LangVersion>preview</LangVersion> <!-- to enable indexing from end via ^ -->

<!-- the resulting 200 MB exe fails to load FSharp.Core correctly -->
<!-- <PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<DebugType>embedded</DebugType> -->
<!-- <PublishSingleFile>true</PublishSingleFile><RuntimeIdentifier>win-x64</RuntimeIdentifier><SelfContained>true</SelfContained><PublishReadyToRun>true</PublishReadyToRun><DebugType>embedded</DebugType> -->

<NeutralLanguage>en</NeutralLanguage>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> <!-- <SatelliteResourceLanguages> to only have the English resources-->
Expand All @@ -46,6 +42,7 @@
<OutputPath>bin/standalone</OutputPath>
<OtherFlags>$(OtherFlags) --warnon:1182</OtherFlags> <!-- 1182: warn on unused variables -->
<ChangelogFile>CHANGELOG.md</ChangelogFile>
<Configurations>Release</Configurations>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 5afbe11

Please sign in to comment.