User Tools

Site Tools


dev:asp-net-core-app

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
dev:asp-net-core-app [2020/07/21 07:26] sudev:asp-net-core-app [2022/02/17 14:46] su
Line 1: Line 1:
-====== Creating an App from an ASP.NET Core App Template ======+====== Creating an ASP.NET Core App ======
  
-A number of different C# templates are available for creating your application+You can install project templates for Visual Studio 2022, Visual Studio 2019 and the .NET SDK's `dotnet new` tool by following the instructions on [[https://www.nuget.org/packages/IntelligentPlant.IndustrialAppStore.Templates|NuGet.org]]. You can also visit the GitHub page for the template pack [[https://github.com/intelligentplant/IndustrialAppStore.ClientTools.DotNet|here]] to view the documentation.
  
-The template pack is available on NuGet.org at https://www.nuget.org/packages/IntelligentPlant.IndustrialAppStore.Templates+Once installed, you can create an app in Visual Studio by selecting "Industrial App Store" from the "Project Type" filter in the new project window:
  
-There are instructions on the NuGet page for how to install the templates package. Once installed, you can create a new project from the command line:+ 
 + 
 +You can also create an app from the command line using the .NET SDK:
  
 <code> <code>
-  mkdir MyNewApp.Web +mkdir MyNewApp.Web 
-  cd MyNewApp.Web +cd MyNewApp.Web 
-  dotnet new iasmvc+dotnet new iasmvc
 </code> </code>
  
-You can then add the project into a solution in Visual Studio and develop as normalor you can use e.g. Visual Studio Code as your editor and compile using the dotnet command line tool. There are a couple of additional steps required after creating the project (detailed in the project readme file), but it allows you to create a running app in just a couple of minutes. +After creating your appplease ensure that you read the README file in your new project to perform any additional required steps!
- +
-Let us know how you get on with it!+
  
dev/asp-net-core-app.txt · Last modified: 2022/02/17 14:49 by su