-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix issue 201 can use hyphen in name #284
Conversation
now I can ``` mkdir try-temp.1 && cd "$_" dotnet new clean-arch ```
a lot of changes but there is only renaming actually |
d8efbac
to
02c6385
Compare
Looking to merge this; can you resolve conflicts when you get a chance? Sorry for the delay in getting to it |
I merge main but encountered with #308 |
@ardalis should I bump version to 6.0.10? |
@@ -20,4 +20,4 @@ jobs: | |||
- name: Build with dotnet | |||
run: dotnet build --configuration Release | |||
- name: Test with dotnet | |||
run: dotnet test ./Clean.Architecture.sln --configuration Release | |||
run: dotnet test ./Clean.Architecture.1.sln --configuration Release |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are the .1
additions for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.sln file name should match with "sourceName"
from template.json
. .1
is one option to respect special symbol (like -
) to correctly instantiate solution from template. Another option is to use _Clean.Architecture_
everywhere
fix #201
see dotnet/templating#1168
now I can