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?
I converted my .NET Framework 4.8.1 Web Application to SDK-style projects (like Microsoft recommended). I think I've worked out all of the quirks except for the publish piece. For some reason, the publish likes to modify my web.config and add stuff to it not included in the original. It also is not including the roslyn folder in the bin folder in the published output. ANYWAY. I worked around the web.config getting molested. Now I just (I think) need to find a way to include the bin\roslyn folder in the published output. I've tried uninstalling and reinstalling Microsoft.CodeDom.Providers.DotNetCompilerPlatform. Reinstalling it did change the web.config section just a tad from what it was, but it works while debugging in Visual Studio. I've also tried just uninstalling that nuget package, but the website fails to run with it removed. Thanks for your advice.
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?
In the old msbuild format, I was including a nuget package that distributed an EXE file among other things. In the Content include, we referenced back to the exe using relative pathing ..\packages\my.exe and used Link to place it in the build output. How do I do that in PackageReference world? This is my old msbuild-style project content include where it worked It copied the EXE file to the bin directory, where I want it
<Content Include="..\packages\abc.1.2.3\tools\abc\abc.exe">
<Link>abc.exe</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\packages\abc.1.2.3\tools\abc\abc.exe">
<Link>abc.exe</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
packages.config
<package id="abc" version="1.2.3" targetFramework="net461" />
<package id="abc" version="1.2.3" targetFramework="net461" />
However, now, it's in SDK-style format and I can't figure out how to include it. How should I solve this?
2 replies
CC#
Created by Turn2Jesus2 on 2/21/2025 in #help
Immutable Service Options
I have a service which mutates its options. I discovered that IOptions<T> creates a singleton and all of the unit tests I'm running all get the same options but unrelated services are mutating the options and other services are seeing those changes. I'd like to have a simple solution that would ensure the options are not mutated and should something try to, it breaks or doesn't compile or whatever. If there's a simple solution, what is it? Someone in the chat yesterday mentioned something about IImmutable, but I don't know the specifics. I saw something about an ImmutableDictionary, but I'd like the whole class to be. Ideas? I kind of think this should be a standard of some sort.
14 replies