diff --git a/DEH-REQIF-APP/DEH-REQIF.Console.csproj b/DEH-REQIF-APP/DEH-REQIF.Console.csproj
index 8ca96e9..65d8012 100644
--- a/DEH-REQIF-APP/DEH-REQIF.Console.csproj
+++ b/DEH-REQIF-APP/DEH-REQIF.Console.csproj
@@ -4,7 +4,7 @@
Exe
net8.0
DEHReqIF.Console
- 1.0.0
+ 1.0.1
A Commandline application used to convert an E-TM-10-25 data source into a ReqIF document.
RHEA System S.A.
Copyright 2022-2024 RHEA System S.A.
@@ -13,6 +13,11 @@
Git
Sam Gerené
latest
+
+ [Update] to net8
+
+ cdp4-comet-logo.png
+ README.md
@@ -44,4 +49,9 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/DEH-REQIF/DEH-REQIF.csproj b/DEH-REQIF/DEH-REQIF.csproj
index 0ce6c92..72d4792 100644
--- a/DEH-REQIF/DEH-REQIF.csproj
+++ b/DEH-REQIF/DEH-REQIF.csproj
@@ -3,7 +3,7 @@
netstandard2.0
DEHReqIF
- 1.0.0
+ 1.0.1
A .NET library to conver ECSS-E-TM-10-25 requirements to an OMG ReqIF file.
DEH-ReqIF
RHEA System S.A.
@@ -16,10 +16,13 @@
false
true
true
+ snupkg
[Initial Version]
latest
+ cdp4-comet-logo.png
+ README.md
@@ -36,4 +39,9 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/cdp4-comet-logo.png b/cdp4-comet-logo.png
new file mode 100644
index 0000000..0087f99
Binary files /dev/null and b/cdp4-comet-logo.png differ
diff --git a/release.bat b/release.bat
new file mode 100644
index 0000000..a6c48e0
--- /dev/null
+++ b/release.bat
@@ -0,0 +1,47 @@
+@echo off
+
+IF %1.==. GOTO KeyError
+set apikey=%1
+
+GOTO Begin
+
+:KeyError
+ECHO.
+ECHO ERROR: No apikey was specified
+ECHO.
+
+GOTO End
+
+:Begin
+
+ECHO.
+ECHO Cleaning up...
+ECHO.
+
+IF EXIST "%~dp0\ReleaseBuilds" (
+ rmdir "%~dp0\ReleaseBuilds" /s /q
+)
+
+mkdir "%~dp0\ReleaseBuilds"
+
+rem Cleaning Builds...
+dotnet clean -c Release DEH-REQIF.sln
+
+ECHO.
+ECHO Packing nugets...
+ECHO.
+
+rem Packing New Versions...
+dotnet pack -c Release -o ReleaseBuilds DEH-REQIF.sln
+
+ECHO.
+ECHO Pushing to nuget.org ...
+ECHO.
+
+dotnet nuget push ReleaseBuilds\*.nupkg -s api.nuget.org -k %apikey% --skip-duplicate
+
+:End
+
+ECHO.
+ECHO Release Completed
+ECHO.
\ No newline at end of file