Cant see to find an orb with support for Dotnet 6

Using the orb circleci/windows@2.4.1 it does not seem to support dotnet 6. Are there plans or solutions to be able to support the new framework. I have code with features that are dependant on the new framework.

3 Likes

Same issue here - are there any plans to include net 6.0 support? @moderators

1 Like

Likewise, any updates on the VS 2022 in windows orb?

Welcome back, as a temporary resolution I’ve managed to incorporate node orb with the following yaml configuration in .circleci/config.jml

 version: 2.1

 orbs:
  node: circleci/node@5.0.1

 jobs:
  test:
    executor:
      name: node/default
    steps:
      - checkout
      - run:
          command: wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && sudo dpkg -i packages-microsoft-prod.deb
          name: Pre-Install tasks
      - run:
          command: sudo apt-get update && sudo apt-get install -y apt-transport-https && sudo apt-get update && sudo apt-get install -y dotnet-sdk-6.0
          name: Install dotnet-skd-6.0
      - run:
          command: dotnet test -v n --results-directory:test_coverage --collect:"Code Coverage"
      - run:
          command: pwd
      - store_artifacts:
          path: ~/project/test_coverage
 workflows:
  test_my_app:
    jobs:
      - test

any updates on this?

Would also need .NET 6 support!

Seems like support was added in the orb circleci/windows@5

1 Like

Hi,
This is available in the orb circleci/windows@5

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.