Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: SoftwareAteliers/asp-net-core-vue-starter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: SoftwareAteliers/asp-net-core-vue-starter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: liborpansky/feat/migrate-dotnet6
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Oct 1, 2024

  1. Migrate to .NET 6

    Related to #83
    
    Migrate the project to .NET 6 and update the project structure to reflect the new SPA template structure.
    
    * **`AspNetCoreVueStarter.csproj`**
      - Update the `TargetFramework` to `net6.0`.
      - Update the `PackageReference` for `Microsoft.AspNetCore.SpaServices.Extensions` to version `6.0.0`.
      - Update the `PackageReference` for `VueCliMiddleware` to version `6.0.0`.
    
    * **`README.md`**
      - Update references from ASP.NET Core 5.0 to ASP.NET Core 6.0.
      - Update instructions to reflect the new SPA template structure.
    
    * **`Program.cs`**
      - Update the `CreateHostBuilder` method to use `WebApplication.CreateBuilder` and `WebApplication` for .NET 6.
      - Update the `Main` method to use `builder.Build().Run()` for .NET 6.
      - Add configuration for `AddControllersWithViews` and `AddSpaStaticFiles`.
      - Add routing and endpoint configuration.
      - Add SPA configuration for development and production environments.
    
    ---
    
    For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/SoftwareAteliers/asp-net-core-vue-starter/issues/83?shareId=XXXX-XXXX-XXXX-XXXX).
    liborpansky committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    874d94a View commit details
    Browse the repository at this point in the history
Loading