Skip to content
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

Update project from .NET 5 to .NET 6 #8

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Any use of third-party trademarks or logos are subject to those third-party's po
You will need the following software on your computer:

- PowerShell
- .NET 5.0
- .NET 6.0
- A Git client
- Visual Studio Code together with the following extensions:
- The C# extension, available at https://aka.ms/AAbvu72.
Expand Down Expand Up @@ -113,7 +113,7 @@ You can either follow the steps in the guide to build the Web API, or you can us
1. To open the Azure Tools, in Visual Studio Code press **CTRL + SHIFT + A** and then select the **APP SERVICE** window.
1. Right-click your subscription, and then select **Create New Web app**.
1. Enter a name for the Web app and then press **Enter**.
1. Select the **.NET 5** runtime stack and then select the **Free** pricing tier. Azure creates the new Web app.
1. Select the **.NET 6** runtime stack and then select the **Free** pricing tier. Azure creates the new Web app.
1. Right-click the new Web app, and then select **Deploy to Web App**.
1. In the Visual Studio Code dialog, select **Deploy**. Visual Studio Code deploys the Web API to Azure.

Expand Down Expand Up @@ -167,4 +167,4 @@ The app is available as an exported Zip package in the PowerApp folder. You can

The app does not include the custom connectors for the various data sources. This is because you must create them to connect to your implementation of the services (Azure API Management, Azure Search, and Azure Logic Apps) that provide the data. Follow the instructions in the guide to create these connectors and configure the app.

A complete version of the Logic App is available as a JSON file in the LogicApp folder. You can paste the contents of this file into the **Logic app code view** for a blank Logic App. Change the references to **vanarsdelapim** to your own APIM account.
A complete version of the Logic App is available as a JSON file in the LogicApp folder. You can paste the contents of this file into the **Logic app code view** for a blank Logic App. Change the references to **vanarsdelapim** to your own APIM account.
10 changes: 5 additions & 5 deletions WebAPI/FieldEngineerApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.4">
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.4" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.6" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.6" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
</ItemGroup>

</Project>