Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions .github/workflows/createrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ jobs:
- name: Restore Dependencies
run: dotnet restore TransactionMobile.Maui.sln

- name: Set Application Version
uses: TransactionProcessing/actions@0.0.4
with:
filepath: 'TransactionMobile.Maui/TransactionMobile.Maui.csproj'
versionnumber: ${{ steps.get_version.outputs.VERSION }}

- name: Build Code
run: dotnet build TransactionMobile.Maui/TransactionMobile.Maui.csproj -c Release -f net6.0-android --no-restore

Expand Down Expand Up @@ -104,6 +110,12 @@ jobs:
- name: Restore Dependencies
run: dotnet restore TransactionMobile.Maui.sln

- name: Set Application Version
uses: TransactionProcessing/actions@0.0.4
with:
filepath: 'TransactionMobile.Maui/TransactionMobile.Maui.csproj'
versionnumber: ${{ steps.get_version.outputs.VERSION }}

- name: Build Code
run: msbuild TransactionMobile.Maui/TransactionMobile.Maui.csproj -r -p:Configuration=Release -p:RestorePackages=false -p:TargetFramework=net6.0-windows10.0.19041 /p:GenerateAppxPackageOnBuild=true

Expand Down Expand Up @@ -150,7 +162,13 @@ jobs:

- name: Restore Dependencies
run: dotnet restore TransactionMobile.Maui.sln


- name: Set Application Version
uses: TransactionProcessing/actions@0.0.4
with:
filepath: 'TransactionMobile.Maui/TransactionMobile.Maui.csproj'
versionnumber: ${{ steps.get_version.outputs.VERSION }}

- name: Build Code
run: dotnet build TransactionMobile.Maui/TransactionMobile.Maui.csproj -c Release -f net6.0-maccatalyst --no-restore

Expand Down Expand Up @@ -197,7 +215,13 @@ jobs:

- name: Restore Dependencies
run: dotnet restore TransactionMobile.Maui.sln


- name: Set Application Version
uses: TransactionProcessing/actions@0.0.4
with:
filepath: 'TransactionMobile.Maui/TransactionMobile.Maui.csproj'
versionnumber: ${{ steps.get_version.outputs.VERSION }}

- name: Build Code
run: dotnet build TransactionMobile.Maui/TransactionMobile.Maui.csproj -c Release -f net6.0-ios --no-restore

Expand Down
1 change: 1 addition & 0 deletions TransactionMobile.Maui/TransactionMobile.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

<!-- Versions -->
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1</ApplicationDisplayVersion>

<!-- Required for C# Hot Reload -->
<UseInterpreter Condition="'$(Configuration)' == 'Debug'">True</UseInterpreter>
Expand Down