-
Notifications
You must be signed in to change notification settings - Fork 493
[Pending .NET 10] Update project templates to target upcoming .NET 10 support #2218
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
Draft
normj
wants to merge
13
commits into
dev
Choose a base branch
from
normj/net10-blueprints
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+99,869
−353
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…net10 respectively
…net new experience only creates the Lambda function in the target directory
…onfig directory now that it has been moved into the src. Also make sure any file-based blueprints are always excluded for the VS packaging.
…clude the VS 2026. Also addressed compiler warnings that came up while building the issues. In previous commit the xunit.runner.visualstudio package was incorrectly updated to version 3.15 and was fixed in this commit to 3.1.5.
...pp/template/src/BlueprintBaseName.1/wwwroot/lib/jquery-validation/dist/additional-methods.js
Fixed
Show fixed
Hide fixed
...pp/template/src/BlueprintBaseName.1/wwwroot/lib/jquery-validation/dist/additional-methods.js
Fixed
Show fixed
Hide fixed
...ebApp/template/src/BlueprintBaseName.1/wwwroot/lib/jquery-validation/dist/jquery.validate.js
Fixed
Show fixed
Hide fixed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Draft Mode: This is in draft mode pending the release of .NET 10 support in Lambda.
Description of changes:
Due to the large number of files it is best to look at the changes per commit. The major changes for .NET 10 support are:
dotnet newcommand because it would always put the projects undersrc/<project-name>along with atest/<project-name>.Testswhich at this point is probably rarely needed. This rigid structured made it hard to easily add a new Lambda project into an existing workspace because it probably had it's own structure. Commit XXXX changed the templates so that there is no longer a test project and the code for the Lambda project will be created in the exact output folder.lambda.FileBasedtemplate create a C# file with all of the necessary boiler plate for creating a Lambda function.Breakdown of commits:
src/<blueprint>folder and corrected paths in the config file. This is what address the usabilitypackagereferencesto the latest versions.xunit.runner.visualstudioto3.15when it should have been3.1.5.public.ecr.aws/lambda/dotnet:10as the base image.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.