Skip to content

Commit

Permalink
dev - Started development of 0.8.4
Browse files Browse the repository at this point in the history
---

Type: dev
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Nov 25, 2023
1 parent f930ff3 commit 62eb0a9
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 5 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build-linux-rel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build Project (Linux, Release)

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Solution Compilation
run: dotnet build --configuration Release
- name: Testing
run: dotnet test --no-build --configuration Release

notify:

runs-on: ubuntu-latest
needs:
- build
if: ${{ always() }}

steps:
- name: Notify
uses: nobrayner/discord-webhook@v1
with:
github-token: ${{ secrets.G_TOKEN }}
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}

42 changes: 42 additions & 0 deletions .github/workflows/build-macos-rel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build Project (macOS, Release)

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Solution Compilation
run: dotnet build --configuration Release
- name: Testing
run: dotnet test --no-build --configuration Release

notify:

runs-on: ubuntu-latest
needs:
- build
if: ${{ always() }}

steps:
- name: Notify
uses: nobrayner/discord-webhook@v1
with:
github-token: ${{ secrets.G_TOKEN }}
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}

42 changes: 42 additions & 0 deletions .github/workflows/build-win-rel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build Project (Windows, Release)

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Solution Compilation
run: dotnet build --configuration Release
- name: Testing
run: dotnet test --no-build --configuration Release

notify:

runs-on: ubuntu-latest
needs:
- build
if: ${{ always() }}

steps:
- name: Notify
uses: nobrayner/discord-webhook@v1
with:
github-token: ${{ secrets.G_TOKEN }}
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}

8 changes: 4 additions & 4 deletions VisualCard/VisualCard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AssemblyVersion>0.8.3</AssemblyVersion>
<FileVersion>0.8.3</FileVersion>
<Version>0.8.3</Version>
<AssemblyVersion>0.8.4</AssemblyVersion>
<FileVersion>0.8.4</FileVersion>
<Version>0.8.4</Version>
<Company>Aptivi</Company>
<Authors>Aptivi</Authors>
<Description>A managed VCard contact file parser</Description>
Expand All @@ -21,7 +21,7 @@
<IncludeSymbols>True</IncludeSymbols>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<LangVersion>latest</LangVersion>
<PackageVersion>0.8.3</PackageVersion>
<PackageVersion>0.8.4</PackageVersion>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\aptivi_snk.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion tools/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.3
0.8.4

0 comments on commit 62eb0a9

Please sign in to comment.