forked from ayush-2909/Contact-Database-Application
-
Notifications
You must be signed in to change notification settings - Fork 469
Updated project files, user controller, and web config #16
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
Open
github-cloudlabsuser-2073
wants to merge
14
commits into
CloudLabsAI-Azure:master
Choose a base branch
from
github-cloudlabsuser-2073:master
base: master
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.
Open
Updated project files, user controller, and web config #16
github-cloudlabsuser-2073
wants to merge
14
commits into
CloudLabsAI-Azure:master
from
github-cloudlabsuser-2073:master
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
Updated `CRUD application 2.csproj` to temporarily include and later remove a reference to `Microsoft.CodeDom.Providers.DotNetCompilerPlatform`. Removed a comment from the end of the file. Upgraded Visual Studio version from 16 to 17 in `CRUD application 2.sln` and added a new project reference to `UnitTests` with its configuration settings. Implemented methods for Index, Details, Create, Edit, and Delete actions in `UserController.cs` to handle user data in a static list. Updated the binding redirect for `WebGrease` in `Web.config`.
Updated the `CRUD application 2.csproj` file to include `deploy.json` and `deploy.parameters.json`. The `deploy.json` file is an ARM template for defining the infrastructure and configuration of the project, specifically for creating a Web App and a Hosting Plan on Azure. The `deploy.parameters.json` file provides parameter values for the ARM template, including parameters like `appName`, `appServicePlanName`, `appServicePlanSku`, `sqlServerName`, and `sqlDatabaseName` to customize the deployment of the resources.
` ` `The "UnitTests" project and its configurations have been removed from the Microsoft Visual Studio Solution File for the "CRUD application 2" solution. This includes both Debug and Release configurations for the Any CPU platform. No new code or projects have been added to the solution.`
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.
Updated
CRUD application 2.csproj
to temporarily include and later remove a reference toMicrosoft.CodeDom.Providers.DotNetCompilerPlatform
. Removed a comment from the end of the file. Upgraded Visual Studio version from 16 to 17 inCRUD application 2.sln
and added a new project reference toUnitTests
with its configuration settings. Implemented methods for Index, Details, Create, Edit, and Delete actions inUserController.cs
to handle user data in a static list. Updated the binding redirect forWebGrease
inWeb.config
.