-
Notifications
You must be signed in to change notification settings - Fork 471
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
Ability to install .NET Framework 3.5 #367
Comments
Hello @silasary. Thank you for your report. We'll investigate the feature request. |
@dmitry-shibanov What about more recent framework versions, such as 4.7.2? |
@EivindAntonsen Windows Server 2022 comes with .NET Framework 4.8, which is compatible with all previous versions of .NET Framework. |
@silasary It should be enabled in Windows Features. On powershell: Enable-WindowsOptionalFeature -Online -FeatureName "NetFx3" |
I had this issue but I've been able to use the Setup .NET Core SDK Action to install .Net 3.5. - name: Add .Net 3.5 Framework
uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.x' |
That isn't .net framework 3.5 |
Description:
The
windows-2022
runner image doesn't ship with Framework 3.5 anymore, and workflows that require it fail on the new runner.As such, it would be nice to be able to install Framework 3.5 with setup-dotnet
Justification:
Builds started failing on windows-2022, and I had to roll back to windows-2019. This is not ideal, and won't last forever.
Are you willing to submit a PR?
If I have to, but I wouldn't know where to start.
The text was updated successfully, but these errors were encountered: