Turn2Jesus2
Turn2Jesus2
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
<Target Name="CopyRoslynFiles" AfterTargets="Publish">
<!-- Include roslyn in the publish, remove later?-->
<ItemGroup>
<RoslynFiles Include="$(NuGetPackageRoot)Microsoft.CodeDom.Providers.DotNetCompilerPlatform\4.1.0\tools\Roslyn-4.1.0\*" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
<Copy SourceFiles="@(RoslynFiles)" DestinationFolder="$(PublishDir)bin\roslyn" />
</Target>
<Target Name="CopyRoslynFiles" AfterTargets="Publish">
<!-- Include roslyn in the publish, remove later?-->
<ItemGroup>
<RoslynFiles Include="$(NuGetPackageRoot)Microsoft.CodeDom.Providers.DotNetCompilerPlatform\4.1.0\tools\Roslyn-4.1.0\*" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
<Copy SourceFiles="@(RoslynFiles)" DestinationFolder="$(PublishDir)bin\roslyn" />
</Target>
YUCK, but I got the output I wanted 😄
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
That is a legitimate option in the tool.
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
I didn't go down that path. I only selected the SDK-style project option
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
Why not put a huge warning: Don't do this for ASP.NET projects?
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
Windows services, etc.
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
I mean, I had no problems with other csproj files
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
This has been a phenomenal waste of my time
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
Why in the WORLD did Microsoft encourage us to migrate to SDK-style first before migrating to .NET???
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
While I hate the idea of reaching into the build output and including it in the output, whatever this is is likely to be a short-term fix. my build output includes the roslyn folder. Is there an easy way to just include that in the publish output?
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
Well, not exactly on this one thing, but it's been a couple of weeks since I did the SDKification.
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
This is one of those "Do this before you migrate to .NET" things and I've wasted about 1.5 weeks on getting this one thing to work before moving on to .NET upgrade.
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
Eh, it's huge and proprietary
25 replies
CC#
Created by Turn2Jesus2 on 4/1/2025 in #help
Why is `dotnet publish` not including Roslyn for my ASP.NET Framework 4.8.1 Web App?
I did a combination of the Upgrade Assistant and manually fixing the breakage it caused. The Upgrade Assistant did a SDK-only upgrade.
25 replies
CC#
Created by Turn2Jesus2 on 2/28/2025 in #help
✅ How to copy an EXE from a NuGet package in SDK-style project with PackageReference?
2 replies
CC#
Created by Turn2Jesus2 on 2/21/2025 in #help
Immutable Service Options
Yeah, I'm migrating a ton of .NET framework projects and they already have tests that are using the old static configuration methods which create new objects. I know now not to mutate options, but it'd be nice to have a fool-proof way to enforce immutability
14 replies
CC#
Created by Turn2Jesus2 on 2/21/2025 in #help
Immutable Service Options
When the tests are ran individually, they all pass. When ran concurrently, they fail because of this mutation.
14 replies