Skip to content

Commit

Permalink
Merge pull request #31 from jason-c-daniels/task/update-to-support-ne…
Browse files Browse the repository at this point in the history
…t8.0

Task/update to support net8.0
  • Loading branch information
jason-c-daniels authored Mar 13, 2024
2 parents a52e11a + 02fffee commit f6e07c4
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .idea/git_toolbox_prj.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/.jcd-new/jcd-new-classlib
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $# -eq 0 ]; then
exit 1
fi

for i in $*; do
for i in "$@"; do
case $i in
-p=*|--project=*|--project-name=*)
echo "found project name parameter"
Expand Down
Empty file modified src/.jcd-new/jcd-new-help
100755 → 100644
Empty file.
Empty file modified src/.jcd-new/jcd-new-help-classlib
100755 → 100644
Empty file.
Empty file modified src/.jcd-new/jcd-new-version
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions src/.jcd-new/jcd-new.bashlib
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ init_git() {
append_gitignore(){
local GI_ROOT="https://raw.githubusercontent.com/github/gitignore/master"
echo "appending $1 to .gitignore from $GI_ROOT"
curl "$GI_ROOT/$1" >> .gitignore
curl -k "$GI_ROOT/$1" >> .gitignore
}

# create an empty solution file
Expand Down Expand Up @@ -231,7 +231,7 @@ validate_target_framework_version() {
TARGET_FRAMEWORK=netstandard2.1
fi

if [[ "$TARGET_FRAMEWORK" != @(netstandard1[.][0-6]|netstandard2[.][01]|netcoreapp1[.][01]|netcoreapp2[.][012]|netcoreapp3[.][01]|net[56][.]0) ]]
if [[ "$TARGET_FRAMEWORK" != @(netstandard1[.][0-6]|netstandard2[.][01]|netcoreapp1[.][01]|netcoreapp2[.][012]|netcoreapp3[.][01]|net[5-8][.]0) ]]
then
echo "$TARGET_FRAMEWORK is not a recognized/supported framework."
exit 1
Expand Down

0 comments on commit f6e07c4

Please sign in to comment.