From 28e76c9f94a34e6f168a8df5d47277e5b77a1ad2 Mon Sep 17 00:00:00 2001
From: Thiago Zimmermann <13345912+thiago-dev@users.noreply.github.com>
Date: Sun, 18 Sep 2022 02:19:16 +0200
Subject: [PATCH 1/8] Use github actions for ci/cd
---
.github/version.yml | 6 +++
.github/workflows/cd.yml | 89 ++++++++++++++++++++++++++++++++++++++++
.github/workflows/ci.yml | 62 ++++++++++++++++++++++++++++
appveyor.yml | 31 --------------
packages.config | 8 ----
5 files changed, 157 insertions(+), 39 deletions(-)
create mode 100644 .github/version.yml
create mode 100644 .github/workflows/cd.yml
create mode 100644 .github/workflows/ci.yml
delete mode 100644 appveyor.yml
delete mode 100644 packages.config
diff --git a/.github/version.yml b/.github/version.yml
new file mode 100644
index 0000000..a013f09
--- /dev/null
+++ b/.github/version.yml
@@ -0,0 +1,6 @@
+mode: ContinuousDeployment
+branches:
+ master:
+ tag: beta
+ hotfix:
+ tag: useBranchName
\ No newline at end of file
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
new file mode 100644
index 0000000..deaaee1
--- /dev/null
+++ b/.github/workflows/cd.yml
@@ -0,0 +1,89 @@
+name: Release
+
+on:
+ push:
+ tags:
+ - "*"
+
+jobs:
+ calculate-version:
+ name: Calculate Version
+ runs-on: ubuntu-latest
+ outputs:
+ semVer: ${{ steps.gitversion.outputs.semVer }}
+
+ steps:
+ - uses: actions/checkout@v2.4.2
+ with:
+ fetch-depth: 0
+
+ - name: Install GitVersion
+ uses: gittools/actions/gitversion/setup@v0.9.7
+ with:
+ versionSpec: "5.x"
+
+ - name: Determine Version
+ id: gitversion
+ uses: gittools/actions/gitversion/execute@v0.9.7
+ with:
+ useConfigFile: true
+ configFilePath: ./.github/version.yml
+
+ build:
+ name: Build and Release
+ runs-on: windows-latest
+ needs: calculate-version
+ env:
+ SEMVER: ${{ needs.calculate-version.outputs.semVer }}
+ ZipName: NFive.SDK.Core-${{ needs.calculate-version.outputs.semVer }}.zip
+
+ steps:
+ - uses: actions/checkout@v2.4.2
+
+ - name: Setup MSBuild
+ uses: microsoft/setup-msbuild@v1.1
+
+ - name: Setup NuGet
+ uses: NuGet/setup-nuget@v1.0.6
+
+ - name: Restore dependencies
+ run: nuget restore NFive.SDK.Core.sln
+
+ - name: Build the solution
+ run: msbuild NFive.SDK.Core.sln /p:Configuration=Release /p:Outdir=Build
+
+ - uses: vimtor/action-zip@v1
+ with:
+ files: Build/
+ dest: ${{ env.ZipName }}
+
+ # Create a Release on the GitHub project
+ - name: Create release
+ id: create_release
+ uses: actions/create-release@v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
+ with:
+ tag_name: ${{ env.SEMVER }}
+ release_name: ${{ env.SEMVER }}
+ draft: false
+ prerelease: false
+
+ # Upload the Build Artifact to the Release
+ - name: Update release asset
+ id: upload-release-asset
+ uses: actions/upload-release-asset@v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
+ asset_path: .\${{ env.ZipName }}
+ asset_name: ${{ env.ZipName }}
+ asset_content_type: application/zip
+
+ - name: Pack
+ run: dotnet pack NFive.SDK.Core.csproj -p:PackageVersion=${{ env.SEMVER }} --configuration Release
+
+ # Push package to nuget.org
+ - name: Push nuget package
+ run: dotnet nuget push **/*.nupkg --skip-duplicate --source "https://api.nuget.org/v3/index.json" --api-key ${{secrets.nuget_api_key}}
\ No newline at end of file
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..36ceea5
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,62 @@
+name: CI
+
+on:
+ push:
+ branches:
+ - "**"
+ tags:
+ - "v*.*.*"
+ pull_request:
+ branches:
+ - "**"
+
+jobs:
+ calculate-version:
+ name: Calculate Version
+ runs-on: ubuntu-latest
+ outputs:
+ semVer: ${{ steps.gitversion.outputs.semVer }}
+
+ steps:
+ - uses: actions/checkout@v2.4.2
+ with:
+ fetch-depth: 0
+
+ - name: Install GitVersion
+ uses: gittools/actions/gitversion/setup@v0.9.7
+ with:
+ versionSpec: "5.x"
+
+ - name: Determine Version
+ id: gitversion
+ uses: gittools/actions/gitversion/execute@v0.9.7
+ with:
+ useConfigFile: true
+ configFilePath: ./.github/version.yml
+
+ build:
+ runs-on: windows-latest
+ needs: calculate-version
+ env:
+ SEMVER: ${{ needs.calculate-version.outputs.semVer }}
+
+ steps:
+ - uses: actions/checkout@v2.4.2
+
+ - name: Setup MSBuild
+ uses: microsoft/setup-msbuild@v1.1
+
+ - name: Setup NuGet
+ uses: NuGet/setup-nuget@v1.0.6
+
+ - name: Restore dependencies
+ run: nuget restore NFive.SDK.Core.sln
+
+ - name: Build the solution
+ run: msbuild NFive.SDK.Core.sln /p:Configuration=Release /p:Outdir=Build
+
+ - name: Attach Zip as build artifact
+ uses: actions/upload-artifact@v3.1.0
+ with:
+ name: NFive.SDK.Core-${{ env.SEMVER }}
+ path: Build
\ No newline at end of file
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 0c4e1be..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-version: 0.1.0.{build}
-
-image: Visual Studio 2019
-configuration: Release
-platform: Any CPU
-clone_depth: 1
-
-branches:
- only:
- - master
-
-cache:
-- packages -> packages.config
-
-test: off
-
-assembly_info:
- patch: true
- file: Properties\AssemblyInfo.cs
- assembly_version: "{version}"
- assembly_file_version: "{version}"
- assembly_informational_version: "{version}"
-
-before_build:
-- nuget update -self
-- nuget restore
-
-build:
- project: NFive.SDK.Client.sln
- verbosity: minimal
- publish_nuget: true
diff --git a/packages.config b/packages.config
deleted file mode 100644
index 1896ccd..0000000
--- a/packages.config
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
From b0819beeca896ec158d9f2416af4f6840f04c355 Mon Sep 17 00:00:00 2001
From: Thiago Zimmermann <13345912+thiago-dev@users.noreply.github.com>
Date: Sun, 18 Sep 2022 02:19:30 +0200
Subject: [PATCH 2/8] Migrate to net471
---
NFive.SDK.Client.csproj | 109 ++++++----------------------------------
NFive.SDK.Client.nuspec | 2 +-
nuget.config | 10 ----
3 files changed, 15 insertions(+), 106 deletions(-)
delete mode 100644 nuget.config
diff --git a/NFive.SDK.Client.csproj b/NFive.SDK.Client.csproj
index ea586ca..abf163b 100644
--- a/NFive.SDK.Client.csproj
+++ b/NFive.SDK.Client.csproj
@@ -1,103 +1,22 @@
-
-
-
+
+
- Debug
- AnyCPU
- {22732BBC-D264-4BC1-81D7-D44F5E6AFB3D}
- Library
- Properties
+ net471
NFive.SDK.Client
NFive.SDK.Client.net
- v4.5.2
- 512
-
-
- false
- none
- false
- bin\Debug
- DEBUG;TRACE
- prompt
- 4
-
- .allowedextension
-
-
-
- false
- none
- true
- bin\Release
- TRACE
- prompt
- 4
-
- .allowedextension
-
+ false
+
-
- packages\CitizenFX.Core.Client.1.0.4410\lib\net45\CitizenFX.Core.Client.dll
- False
-
-
- packages\JetBrains.Annotations.2021.2.0\lib\net20\JetBrains.Annotations.dll
- False
-
-
-
- packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll
- False
-
-
- packages\NFive.SDK.Core.0.1.0.62\lib\net452\NFive.SDK.Core.net.dll
- False
+
+
+
+
+
+
+
+ $(PkgNewtonsoft_Json)\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll
-
- packages\NGettext.0.6.6\lib\net45\NGettext.dll
- False
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Designer
-
-
-
+
\ No newline at end of file
diff --git a/NFive.SDK.Client.nuspec b/NFive.SDK.Client.nuspec
index ace96b9..78963fb 100644
--- a/NFive.SDK.Client.nuspec
+++ b/NFive.SDK.Client.nuspec
@@ -12,6 +12,6 @@
$description$
$copyright$
nfive fivem gtav
-
+
diff --git a/nuget.config b/nuget.config
deleted file mode 100644
index 046928f..0000000
--- a/nuget.config
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
From dbd3720dbdef05923d3a10d22b4439a3a50085d0 Mon Sep 17 00:00:00 2001
From: Thiago Zimmermann <13345912+thiago-dev@users.noreply.github.com>
Date: Sun, 18 Sep 2022 04:05:50 +0200
Subject: [PATCH 3/8] Fix typo in github workflows
---
.github/workflows/cd.yml | 8 ++++----
.github/workflows/ci.yml | 6 +++---
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index deaaee1..fcdd2c8 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -35,7 +35,7 @@ jobs:
needs: calculate-version
env:
SEMVER: ${{ needs.calculate-version.outputs.semVer }}
- ZipName: NFive.SDK.Core-${{ needs.calculate-version.outputs.semVer }}.zip
+ ZipName: NFive.SDK.Client-${{ needs.calculate-version.outputs.semVer }}.zip
steps:
- uses: actions/checkout@v2.4.2
@@ -47,10 +47,10 @@ jobs:
uses: NuGet/setup-nuget@v1.0.6
- name: Restore dependencies
- run: nuget restore NFive.SDK.Core.sln
+ run: nuget restore NFive.SDK.Client.sln
- name: Build the solution
- run: msbuild NFive.SDK.Core.sln /p:Configuration=Release /p:Outdir=Build
+ run: msbuild NFive.SDK.Client.sln /p:Configuration=Release /p:Outdir=Build
- uses: vimtor/action-zip@v1
with:
@@ -82,7 +82,7 @@ jobs:
asset_content_type: application/zip
- name: Pack
- run: dotnet pack NFive.SDK.Core.csproj -p:PackageVersion=${{ env.SEMVER }} --configuration Release
+ run: dotnet pack NFive.SDK.Client.csproj -p:PackageVersion=${{ env.SEMVER }} --configuration Release
# Push package to nuget.org
- name: Push nuget package
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 36ceea5..af1cb46 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -50,13 +50,13 @@ jobs:
uses: NuGet/setup-nuget@v1.0.6
- name: Restore dependencies
- run: nuget restore NFive.SDK.Core.sln
+ run: nuget restore NFive.SDK.Client.sln
- name: Build the solution
- run: msbuild NFive.SDK.Core.sln /p:Configuration=Release /p:Outdir=Build
+ run: msbuild NFive.SDK.Client.sln /p:Configuration=Release /p:Outdir=Build
- name: Attach Zip as build artifact
uses: actions/upload-artifact@v3.1.0
with:
- name: NFive.SDK.Core-${{ env.SEMVER }}
+ name: NFive.SDK.Client-${{ env.SEMVER }}
path: Build
\ No newline at end of file
From 248bd5f11dbbe2a0aba367013eb8e55eebad8d9a Mon Sep 17 00:00:00 2001
From: Thiago Zimmermann <13345912+thiago-dev@users.noreply.github.com>
Date: Sun, 18 Sep 2022 04:06:30 +0200
Subject: [PATCH 4/8] Move nuget manifest metadata to project file
---
NFive.SDK.Client.csproj | 13 ++++++++++++-
NFive.SDK.Client.nuspec | 17 -----------------
2 files changed, 12 insertions(+), 18 deletions(-)
delete mode 100644 NFive.SDK.Client.nuspec
diff --git a/NFive.SDK.Client.csproj b/NFive.SDK.Client.csproj
index abf163b..4e94f43 100644
--- a/NFive.SDK.Client.csproj
+++ b/NFive.SDK.Client.csproj
@@ -5,11 +5,22 @@
NFive.SDK.Client
NFive.SDK.Client.net
false
+
+ NFive.SDK.Client
+ NFive
+ NFive
+ LGPL-3.0-only
+ nfive fivem gtav
+ false
+ https://github.com/NFive/SDK.Client
+ https://github.com/NFive/SDK.Client
+ git
+ NFive Client SDK for plugins
-
+
diff --git a/NFive.SDK.Client.nuspec b/NFive.SDK.Client.nuspec
deleted file mode 100644
index 78963fb..0000000
--- a/NFive.SDK.Client.nuspec
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- NFive.SDK.Client
- $version$
- $title$
- NFive
- NFive
- false
- LGPL-3.0-only
- https://github.com/NFive/SDK.Client
- $description$
- $copyright$
- nfive fivem gtav
-
-
-
From f945f7715de23da4cd4a5f0d73ea01891c31f98a Mon Sep 17 00:00:00 2001
From: Thiago Zimmermann <13345912+thiago-dev@users.noreply.github.com>
Date: Sun, 18 Sep 2022 04:57:40 +0200
Subject: [PATCH 5/8] Update dependencies
---
NFive.SDK.Client.csproj | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/NFive.SDK.Client.csproj b/NFive.SDK.Client.csproj
index 4e94f43..a935ad5 100644
--- a/NFive.SDK.Client.csproj
+++ b/NFive.SDK.Client.csproj
@@ -19,9 +19,9 @@
-
-
-
+
+
+
From f6ab944f1ee3dfab03ff6e6c935032e3fc84bd4a Mon Sep 17 00:00:00 2001
From: all-in-simplicity <13345912+all-in-simplicity@users.noreply.github.com>
Date: Fri, 16 Feb 2024 07:33:15 +0100
Subject: [PATCH 6/8] Update github actions
---
.github/workflows/cd.yml | 24 +++++++++---------------
.github/workflows/ci.yml | 19 ++++++++-----------
NFive.SDK.Client.csproj | 27 ++++++++++++++++++++++++---
Properties/AssemblyInfo.cs | 16 ----------------
icon.png | Bin 0 -> 5617 bytes
5 files changed, 41 insertions(+), 45 deletions(-)
delete mode 100644 Properties/AssemblyInfo.cs
create mode 100644 icon.png
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index fcdd2c8..ef7bd39 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -1,4 +1,4 @@
-name: Release
+name: Continuous Deployment
on:
push:
@@ -13,18 +13,18 @@ jobs:
semVer: ${{ steps.gitversion.outputs.semVer }}
steps:
- - uses: actions/checkout@v2.4.2
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GitVersion
- uses: gittools/actions/gitversion/setup@v0.9.7
+ uses: gittools/actions/gitversion/setup@v0.10.2
with:
versionSpec: "5.x"
- name: Determine Version
id: gitversion
- uses: gittools/actions/gitversion/execute@v0.9.7
+ uses: gittools/actions/gitversion/execute@v0.10.2
with:
useConfigFile: true
configFilePath: ./.github/version.yml
@@ -38,45 +38,40 @@ jobs:
ZipName: NFive.SDK.Client-${{ needs.calculate-version.outputs.semVer }}.zip
steps:
- - uses: actions/checkout@v2.4.2
-
- - name: Setup MSBuild
- uses: microsoft/setup-msbuild@v1.1
+ - uses: actions/checkout@v4
- name: Setup NuGet
- uses: NuGet/setup-nuget@v1.0.6
+ uses: NuGet/setup-nuget@v2
- name: Restore dependencies
run: nuget restore NFive.SDK.Client.sln
- name: Build the solution
- run: msbuild NFive.SDK.Client.sln /p:Configuration=Release /p:Outdir=Build
+ run: dotnet build -c Release -o Build /p:Version=${{env.SEMVER}} NFive.SDK.Client.sln
- uses: vimtor/action-zip@v1
with:
files: Build/
dest: ${{ env.ZipName }}
- # Create a Release on the GitHub project
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.SEMVER }}
release_name: ${{ env.SEMVER }}
draft: false
prerelease: false
- # Upload the Build Artifact to the Release
- name: Update release asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
- upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
+ upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: .\${{ env.ZipName }}
asset_name: ${{ env.ZipName }}
asset_content_type: application/zip
@@ -84,6 +79,5 @@ jobs:
- name: Pack
run: dotnet pack NFive.SDK.Client.csproj -p:PackageVersion=${{ env.SEMVER }} --configuration Release
- # Push package to nuget.org
- name: Push nuget package
run: dotnet nuget push **/*.nupkg --skip-duplicate --source "https://api.nuget.org/v3/index.json" --api-key ${{secrets.nuget_api_key}}
\ No newline at end of file
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index af1cb46..5e5fef6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,4 +1,4 @@
-name: CI
+name: Continuous Integration
on:
push:
@@ -18,18 +18,18 @@ jobs:
semVer: ${{ steps.gitversion.outputs.semVer }}
steps:
- - uses: actions/checkout@v2.4.2
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GitVersion
- uses: gittools/actions/gitversion/setup@v0.9.7
+ uses: gittools/actions/gitversion/setup@v0.10.2
with:
versionSpec: "5.x"
- name: Determine Version
id: gitversion
- uses: gittools/actions/gitversion/execute@v0.9.7
+ uses: gittools/actions/gitversion/execute@v0.10.2
with:
useConfigFile: true
configFilePath: ./.github/version.yml
@@ -41,22 +41,19 @@ jobs:
SEMVER: ${{ needs.calculate-version.outputs.semVer }}
steps:
- - uses: actions/checkout@v2.4.2
-
- - name: Setup MSBuild
- uses: microsoft/setup-msbuild@v1.1
+ - uses: actions/checkout@v4
- name: Setup NuGet
- uses: NuGet/setup-nuget@v1.0.6
+ uses: NuGet/setup-nuget@v2
- name: Restore dependencies
run: nuget restore NFive.SDK.Client.sln
- name: Build the solution
- run: msbuild NFive.SDK.Client.sln /p:Configuration=Release /p:Outdir=Build
+ run: dotnet build -c Release -o Build /p:Version=${{env.SEMVER}} NFive.SDK.Client.sln
- name: Attach Zip as build artifact
- uses: actions/upload-artifact@v3.1.0
+ uses: actions/upload-artifact@v4
with:
name: NFive.SDK.Client-${{ env.SEMVER }}
path: Build
\ No newline at end of file
diff --git a/NFive.SDK.Client.csproj b/NFive.SDK.Client.csproj
index a935ad5..a77018e 100644
--- a/NFive.SDK.Client.csproj
+++ b/NFive.SDK.Client.csproj
@@ -4,7 +4,6 @@
net471
NFive.SDK.Client
NFive.SDK.Client.net
- false
NFive.SDK.Client
NFive
@@ -12,15 +11,37 @@
LGPL-3.0-only
nfive fivem gtav
false
- https://github.com/NFive/SDK.Client
https://github.com/NFive/SDK.Client
git
+ NFive.SDK.Client
+ https://github.com/NFive
+ icon.png
+ nfive fivem gtav
+ 0.1.4
NFive Client SDK for plugins
+ README.md
+ Copyright © NFive 2018-2024
+ en-US
+
+
+ True
+ \
+
+
+
+
+
+
+ True
+ \
+
+
+
-
+
diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs
deleted file mode 100644
index 1dfe10f..0000000
--- a/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-[assembly: AssemblyTitle("NFive Client SDK")]
-[assembly: AssemblyDescription("NFive client SDK for plugin development")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("NFive")]
-[assembly: AssemblyProduct("NFive SDK")]
-[assembly: AssemblyCopyright("Copyright © NFive 2018-2021")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-[assembly: ComVisible(false)]
-[assembly: Guid("f6aa79c1-4e08-4a75-a0b4-ffd2b33d89d7")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
-[assembly: AssemblyInformationalVersion("1.0.0.0")]
diff --git a/icon.png b/icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d2da72e3f68382ba54c630ca8ffeac01f2ed72c
GIT binary patch
literal 5617
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
C>Z`f{
literal 0
HcmV?d00001
From e684a36decc6d3ce7971fdad1f8f1e013bdc41f1 Mon Sep 17 00:00:00 2001
From: all-in-simplicity <13345912+all-in-simplicity@users.noreply.github.com>
Date: Fri, 16 Feb 2024 07:46:46 +0100
Subject: [PATCH 7/8] Update NFive.SDK.Client.csproj
---
NFive.SDK.Client.csproj | 1 -
1 file changed, 1 deletion(-)
diff --git a/NFive.SDK.Client.csproj b/NFive.SDK.Client.csproj
index a77018e..fe75854 100644
--- a/NFive.SDK.Client.csproj
+++ b/NFive.SDK.Client.csproj
@@ -30,7 +30,6 @@
\
-
From 9a9b1149871db312bed7e36311c7903a4701d18f Mon Sep 17 00:00:00 2001
From: all-in-simplicity <13345912+all-in-simplicity@users.noreply.github.com>
Date: Fri, 16 Feb 2024 07:50:18 +0100
Subject: [PATCH 8/8] Update NFive.SDK.Client.csproj
---
NFive.SDK.Client.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/NFive.SDK.Client.csproj b/NFive.SDK.Client.csproj
index fe75854..3471947 100644
--- a/NFive.SDK.Client.csproj
+++ b/NFive.SDK.Client.csproj
@@ -32,7 +32,7 @@
-
+
True
\