Aspnetcore: Error CS8103 Combined length of user strings used by the program exceeds allowed limit. Try to decrease use of string literals.

Created on 28 Feb 2018  路  30Comments  路  Source: dotnet/aspnetcore

I receive this error on my datasets since I've installed the latest VS2017. I have big tables, and think the MSDataSetGenerator generates code different, so now the compiler can't handle the big generated strings anymore?

There is not much information about the error message BC37255.

Can you help?

_This issue has been moved from https://developercommunity.visualstudio.com/content/problem/192728/bc37255-combined-length-of-user-strings-used-by-th.html
VSTS ticketId: 561492_
_These are the original issue comments:_
(no comments)
_These are the original issue solutions:_
(no solutions)

Author affected-few area-mvc bug severity-blocking

Most helpful comment

.net core >= 2.1 && < 3
This can be accomplished using the property RazorCompileOnBuild in the .csproj file:


netcoreapp2.1
false
false

All 30 comments

Can you provide a bit more information here? There are limits on how big strings and XML literals can be in an application. But it's hard to see from the issue why this is happening here and what can be done to alleviate it.

Hi,
I am also facing the same issue. It was absolutely working fine in 2015. But in VS 2017, it is giving the above mentioned error.
We have about 6 projects in a solutions. One Web App and others as class libraries. Each project has a constant file. That file would have 100s and 1000s of static strings - be it queries, constants, cache keys, session keys, messages, etc.

The problem started appearing from Web project. As we added more files to it, this error poped up.

Do let me know in case you need more info on the same.

Hi @jaredpar
We encountered the same issue here:
13>CSC : error CS8103: Combined length of user strings used by the program exceeds allowed limit. Try to decrease use of string literals.

After upgrade to ".NET Core 2.1 SDK" (netcoreapp2.1), by default RazorCompileOnBuild is set to true and it builds and compiles Razor Pages and Razor views automatically. Then we saw the CS8103 error.
If we set RazorCompileOnBuild to false and keep .cshtml compiled at runtime, it's fine so far.

Any ideas/ suggestions to workaround the issue? Thanks.

hi @soiwill - sorry you're encountering this problem. We've implemented features inside the Razor compiler to avoid this problem in the past, and it looks like either this is a new case, or we broke something in the 2.1 SDK.

Could I ask you to report this over at https://github.com/aspnet/AspNetCore/issues so we can follow up as this problem relates to ASP.NET Core?

I would be great to know the version of the runtime you're targeting as well as the exact SDK version.

That may have been fixed in https://github.com/dotnet/roslyn/pull/37915 which will be in Visual Studio 2019 update 4.

Closing as fixed in 16.4 due to https://github.com/dotnet/roslyn/pull/37915. Please reopen if that is not in fact fixed.

@gafter I think this might be a different issue than the one addressed by dotnet/roslyn#37915, since BC37255 is report by the metadata writer when the assembly user string heap overflows.

In VS 2015 the compiler did not correctly check the size of the strings and might have produced an invalid assembly if the total string size exceeded the limits allows by ECMA335 specification.

To avoid this error, I'd recommend to store large strings (or large quantities of strings) to embedded resources instead of string literals.

Closing as fixed in 16.4 due to dotnet/roslyn#37915. Please reopen if that is not in fact fixed.

16.4 Preview 4 still has this issue. It increases the maximum combined length of string over 16.3.8 but it doesn't solve the problem entirely. As you increase the number of strings in 16.4 preview 4 the issue comes back.

Is there a way to fix it altogether?

Thanks in advance.

Is there a way to fix it altogether?

This is a limitation of the specification for the assembly file format. We would need to revise that to lift the limitation.

If you have large string literals that you need in your program, you can move them to resources so that they do not take up space in the string table.

Is there a way to fix it altogether?

This is a limitation of the specification for the assembly file format. We would need to revise that to lift the limitation.

If you have large string literals that you need in your program, you can move them to resources so that they do not take up space in the string table.

We do not have large strings but many strings across many .cshtml files and combining them all exceeds the threshold apparently.

Aside from defining it in the resources, which I assume will impact performance, are there other ways that won't affect performance but it still is able to compile and function?

What's involved in revising the limitation? Can it be configurable? What is it set at now?

Thanks in advance for your help.

The #US "user string" heap in an assembly has a "Size" that is stored as 4 bytes. There are no plans for an overhaul of the assembly file format. If we were to embark on a project of that scale, I would expect rollout of all of the affected tools to take several years.

The only other thing I can suggest is to break the program into several assemblies.

The #US "user string" heap in an assembly has a "Size" that is stored as 4 bytes. There are no plans for an overhaul of the assembly file format. If we were to embark on a project of that scale, I would expect rollout of all of the affected tools to take several years.

The only other thing I can suggest is to break the program into several assemblies.

Thanks for your response.

If I had a .NET Core website with thousands of pages and each page would have variables defining the content of the site, for instance a title variable which is used in the tag, keyword tag, open graph tags and in the h1 tag, how would I set up the project(s) to get around the size limitation of the concatenation of all these variables?</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars0.githubusercontent.com/u/39166254?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="BeelineDevelopers picture"> <strong>BeelineDevelopers</strong> <span class="text-muted ml-1">on 18 Nov 2019</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Why not store them in external files (like standard .net resource files) and have your code load it from that? Then the strings aren't in your dlls themselves, but they're just effectively in xml files that can be effectively any size.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/4564579?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="CyrusNajmabadi picture"> <strong>CyrusNajmabadi</strong> <span class="text-muted ml-1">on 19 Nov 2019</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Note: these questions are better suited to something like gitter/discord. </p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/4564579?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="CyrusNajmabadi picture"> <strong>CyrusNajmabadi</strong> <span class="text-muted ml-1">on 19 Nov 2019</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <blockquote> <p>Why not store them in external files (like standard .net resource files) and have your code load it from that? Then the strings aren't in your dlls themselves, but they're just effectively in xml files that can be effectively any size.</p> </blockquote> <p>Thanks for the tip!</p> <p>Is there any performance implications going that route (resource files) vs. having them in variables? In our scenario, even milliseconds count. I would think reading the file would be a hit to performance but maybe after that it's OK since it would be cached in memory?</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars0.githubusercontent.com/u/39166254?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="BeelineDevelopers picture"> <strong>BeelineDevelopers</strong> <span class="text-muted ml-1">on 19 Nov 2019</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="mb-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3731713875" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <blockquote> <p>Is there any performance implications</p> </blockquote> <p>Yes. Measure.</p> <blockquote> <p>In our scenario, even milliseconds count. </p> </blockquote> <p>Measure.</p> <blockquote> <p>but maybe after that it's OK since it would be cached in memory?</p> </blockquote> <p>Maybe. Measure. This is your domain, so you will need to evaluate what the performance is and what is acceptable. </p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/4564579?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="CyrusNajmabadi picture"> <strong>CyrusNajmabadi</strong> <span class="text-muted ml-1">on 19 Nov 2019</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>As mentioned above: these questions are better suited to something like gitter/discord. Try gitter.im/dotnet/roslyn Or discord.gg/csharp</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/4564579?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="CyrusNajmabadi picture"> <strong>CyrusNajmabadi</strong> <span class="text-muted ml-1">on 19 Nov 2019</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <blockquote> <blockquote> <p>Is there any performance implications</p> </blockquote> <p>Yes. Measure.</p> <blockquote> <p>In our scenario, even milliseconds count.</p> </blockquote> <p>Measure.</p> <blockquote> <p>but maybe after that it's OK since it would be cached in memory?</p> </blockquote> <p>Maybe. Measure. This is your domain, so you will need to evaluate what the performance is and what is acceptable.</p> </blockquote> <p>True. </p> <p>But, in general, in your expert opinion, is there a performance degradation using resources vs. variables on a website which in your opinion is not negligible.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars0.githubusercontent.com/u/39166254?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="BeelineDevelopers picture"> <strong>BeelineDevelopers</strong> <span class="text-muted ml-1">on 19 Nov 2019</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>As mentioned above: these questions are better suited to something like gitter/discord. Try gitter.im/dotnet/roslyn Or discord.gg/csharp</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/4564579?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="CyrusNajmabadi picture"> <strong>CyrusNajmabadi</strong> <span class="text-muted ml-1">on 19 Nov 2019</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <blockquote> <p>Closing as fixed in 16.4 due to dotnet/roslyn#37915. Please reopen if that is not in fact fixed.</p> </blockquote> <p>Still getting this error trying to build an ASP.NET Core 3.1 application in VS2019 16.4.2.</p> <p><strong>Error CS8103 Combined length of user strings used by the program exceeds allowed limit. Try to decrease use of string literals.</strong></p> <p>Microsoft Visual Studio Professional 2019<br /> Version 16.4.2<br /> VisualStudio.16.Release/16.4.2+29613.14<br /> Microsoft .NET Framework<br /> Version 4.8.03752</p> <p>Installed Version: Professional</p> <p>ASP.NET and Web Tools 2019 16.4.457.38025<br /> ASP.NET and Web Tools 2019</p> <p>ASP.NET Web Frameworks and Tools 2019 16.4.457.38025</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars2.githubusercontent.com/u/4866561?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="dotcom9 picture"> <strong>dotcom9</strong> <span class="text-muted ml-1">on 7 Jan 2020</span> </div> <div class="col text-right"> 👀<span class="ml-2 mr-3">5</span> </div> </div> </div> </div> <div class="mb-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3731713875" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>.net core >= 2.1 && < 3<br /> This can be accomplished using the property RazorCompileOnBuild in the .csproj file:</p> <p><PropertyGroup><br /> <TargetFramework>netcoreapp2.1</TargetFramework><br /> <RazorCompileOnBuild>false</RazorCompileOnBuild><br /> <RazorCompileOnPublish>false</RazorCompileOnPublish><br /> </PropertyGroup></p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/31803642?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="ferbalu22 picture"> <strong>ferbalu22</strong> <span class="text-muted ml-1">on 28 Mar 2020</span> </div> <div class="col text-right"> 👀<span class="ml-2 mr-3">1</span> 🚀<span class="ml-2 mr-3">1</span> ❤<span class="ml-2 mr-3">1</span> 🎉<span class="ml-2 mr-3">1</span> 😄<span class="ml-2 mr-3">1</span> 👎<span class="ml-2 mr-3">1</span> 👍<span class="ml-2 mr-3">1</span> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p><strong>@ferbalu22</strong> I think you are confirming that this is fixed in .net core 3.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/3804346?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="gafter picture"> <strong>gafter</strong> <span class="text-muted ml-1">on 29 Mar 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>This issue is still not fixed.<br /> I have tried Visual Studio Pro 2019 (16.5.5) and .NET Core 3.1</p> <p>As soon as I add few Views to an ASP.NET Core project, the build fails. </p> <p>Its strange that no enterprise has reported this. I fail to understand how can an enterprise product be migrated to .NET Core if this issue is not resolved.<br /> Having few hundred views in a enterprise project is a very common scenario.</p> <p>I have started feeling that .NET Core is more of a playing ground for Microsoft. It's not meant or mature enough for enterprise development.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars1.githubusercontent.com/u/726355?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="gr8tushar picture"> <strong>gr8tushar</strong> <span class="text-muted ml-1">on 13 May 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Moving to aspnetcore as this discussion is primarily about razor implementation, not the C# compiler.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars0.githubusercontent.com/u/146967?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="jaredpar picture"> <strong>jaredpar</strong> <span class="text-muted ml-1">on 13 May 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <blockquote> <p>might have produced an invalid assembly if the total string size exceeded the limits allows by ECMA335 specification.</p> </blockquote> <p><strong>@tmat</strong> \ <strong>@gafter</strong> out of curiosity, what is this size limit?</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars2.githubusercontent.com/u/174281?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="pranavkm picture"> <strong>pranavkm</strong> <span class="text-muted ml-1">on 13 May 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="mb-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3731713875" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>2^24 bytes. Literals are UTF16 encoded, so 8M characters.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars0.githubusercontent.com/u/41759?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="tmat picture"> <strong>tmat</strong> <span class="text-muted ml-1">on 13 May 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>Hi All,<br /> We are stuck in the middle. For one of our solution, we have migrated most of the apps to .NET Core. But this issue is preventing us to go live with all the apps in .NET Core. </p> <p>It has become a night mare and comes with huge cost in maintaining two versions of the system.</p> <p>Awaiting some positive solution.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars1.githubusercontent.com/u/726355?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="gr8tushar picture"> <strong>gr8tushar</strong> <span class="text-muted ml-1">on 16 May 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>The right fix for this would involve razor codegeneration to stash string literals in to a resx file and changing WriteLiteral calls to use these resx strings. Implementing this is going to be a fair bit of work - the code generation would need to add this feature and we would need to change the SDK to express multiple outputs produced per cshtml file.</p> <p>In the meanwhile, app developers have a few options to work around this:</p> <p>a) Consider manually stashing literals in to resx files. This would follow the same pattern as using <a rel="nofollow noopener" target="_blank" href="https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-3.1#view-localization">view localization</a> and it's likely you could repurpose the existing localization APIs for this.</p> <p>b) Another alternative would be to extracting large chunks of HTML in to separate files and emitting these out at runtime:</p> <ul> <li><a rel="nofollow noopener" target="_blank" href="https://github.com/pranavkm/IncludeTagHelper/blob/master/app/Views/Home/Index.cshtml#L10">https://github.com/pranavkm/IncludeTagHelper/blob/master/app/Views/Home/Index.cshtml#L10</a></li> <li><a rel="nofollow noopener" target="_blank" href="https://github.com/pranavkm/IncludeTagHelper/blob/master/app/Views/Home/Index.Content.html">https://github.com/pranavkm/IncludeTagHelper/blob/master/app/Views/Home/Index.Content.html</a></li> <li><a rel="nofollow noopener" target="_blank" href="https://github.com/pranavkm/IncludeTagHelper/blob/master/taghelper/IncludeHtmlTagHelper.cs">https://github.com/pranavkm/IncludeTagHelper/blob/master/taghelper/IncludeHtmlTagHelper.cs</a></li> </ul> <p>c) Yet another option that's already been described here is to turn off build time compilation and rely on runtime compilation. Runtime compilation compiles individual views in to separate assembly. This makes it less likely to reach the 8M limit for strings. To disable build time compilation, </p> <pre><code class="prettyprint"><PropertyGroup> <RazorCompileOnBuild>false</RazorCompileOnBuild> </PropertyGroup> </code></pre> <p>Follow <a rel="nofollow noopener" target="_blank" href="https://docs.microsoft.com/en-us/aspnet/core/mvc/views/view-compilation?view=aspnetcore-3.1&tabs=visual-studio#enable">https://docs.microsoft.com/en-us/aspnet/core/mvc/views/view-compilation?view=aspnetcore-3.1&tabs=visual-studio#enable</a>-runtime-compilation-in-an-existing-project to learn about enabling runtime compilation.</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars2.githubusercontent.com/u/174281?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="pranavkm picture"> <strong>pranavkm</strong> <span class="text-muted ml-1">on 18 May 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p>I got this error too on a desktop application project, I'm using VS 2019 with .Net framework 4.5.2, can anyone help?</p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars3.githubusercontent.com/u/3397826?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="SayedMahmoudGomaa picture"> <strong>SayedMahmoudGomaa</strong> <span class="text-muted ml-1">on 24 May 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown"> <p><code><PropertyGroup> <TargetFramework>netcoreapp2.0</TargetFramework> <PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest> <MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish> </PropertyGroup></code></p> </div> <div class="card-footer"> <div class="row"> <div class="col"> <img src="https://avatars0.githubusercontent.com/u/9425353?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="luomingui picture"> <strong>luomingui</strong> <span class="text-muted ml-1">on 20 Jun 2020</span> </div> <div class="col text-right"> </div> </div> </div> </div> </div> <div class="col-12"> <div class="card card-custom mb-4"> <div class="card-body pt-3 pb-3 markdown text-center helpful"> <div class="title">Was this page helpful?</div> <div class="mt-1" onMouseLeave="rating(617597748, 0);"> <i class="fas fa-star inactive" id="star-1" onMouseOver="rating(617597748, 1);" onclick="rate(617597748, 1);"></i> <i class="fas fa-star inactive" id="star-2" onMouseOver="rating(617597748, 2);" onclick="rate(617597748, 2);"></i> <i class="fas fa-star inactive" id="star-3" onMouseOver="rating(617597748, 3);" onclick="rate(617597748, 3);"></i> <i class="fas fa-star inactive" id="star-4" onMouseOver="rating(617597748, 4);" onclick="rate(617597748, 4);"></i> <i class="fas fa-star inactive" id="star-5" onMouseOver="rating(617597748, 5);" onclick="rate(617597748, 5);"></i> </div> <div class="description text-small"><span id="rating-val">0</span> / 5 - <span id="rating-count">0</span> ratings</div> </div> </div> <div class="mb-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3452512275" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> </div> <div class="col-12 col-lg-4"> <div id="ph-above-related"></div> <div class="card card-custom issue-box"> <div class="card-body pt-3 pb-5"> <h2 class="mb-4">Related issues</h2> <div> <strong> <a href="/aspnetcore/227957496/adomd-net-in-asp-net-core-2-0-0">ADOMD.NET in ASP.NET Core 2.0.0</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars3.githubusercontent.com/u/749898?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="Kevenvz picture"> <strong class="pr-1" dir="ltr">Kevenvz</strong>  路  <span class="px-1" dir="ltr">3</span><span>Comments</span> </div> <hr /> <div> <strong> <a href="/aspnetcore/392783596/please-consider-splitting-the-azuread-package-apart-to">Please consider splitting the AzureAD package apart to reduce dependencies</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars1.githubusercontent.com/u/1396388?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="mj1856 picture"> <strong class="pr-1" dir="ltr">mj1856</strong>  路  <span class="px-1" dir="ltr">3</span><span>Comments</span> </div> <hr /> <div> <strong> <a href="/aspnetcore/330346870/cannot-upgrade-package-microsoft-aspnetcore-all-to-version-2">Cannot Upgrade Package Microsoft.AspNetCore.All to version 2.1.0</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars2.githubusercontent.com/u/1992395?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="groogiam picture"> <strong class="pr-1" dir="ltr">groogiam</strong>  路  <span class="px-1" dir="ltr">3</span><span>Comments</span> </div> <hr /> <div> <strong> <a href="/aspnetcore/176230385/uninstall-asp-net-core-completely-mac-os-x">Uninstall ASP.NET Core completely Mac OS X</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars3.githubusercontent.com/u/1448974?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="ipinak picture"> <strong class="pr-1" dir="ltr">ipinak</strong>  路  <span class="px-1" dir="ltr">3</span><span>Comments</span> </div> <hr /> <div> <strong> <a href="/aspnetcore/164041491/how-to-use-ado-net-in-asp-net-core-1-0">How to use ADO.NET in asp.net core 1.0?</a> </strong> </div> <div class="text-muted text-small mt-2"> <img src="https://avatars3.githubusercontent.com/u/19633742?v=4&s=40" style="width:20px; height:20px;" class="mr-2 rounded float-left" alt="ermithun picture"> <strong class="pr-1" dir="ltr">ermithun</strong>  路  <span class="px-1" dir="ltr">3</span><span>Comments</span> </div> </div> </div> <div class="sticky-top pt-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3919948963" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <div id="ph-below-related-2" class="mt-4"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="3919948963" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> <div class="col-12 col-lg-4"> </div> </div> <div class="skyscraper-container"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3835332123789605" data-ad-slot="7879185320" data-ad-format="vertical" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="mt-5 spacer"></div> <footer class="mt-5 pb-2 py-4 text-center mt-auto"> <div class="container"> <a class="navbar-brand logo mr-5" href="/"> <img src="/assets/img/logo.svg" width="40" height="40" alt="bleepingcoder logo"> bleeping<strong>coder</strong> </a> <div class="mt-4"> bleepingcoder.com uses publicly licensed GitHub information to provide developers around the world with solutions to their problems. We are not affiliated with GitHub, Inc. or with any developers who use GitHub for their projects. We do not host any of the videos or images on our servers. All rights belong to their respective owners. </div> <div> Source for this page: <a href="https://www.github.com/dotnet/aspnetcore/issues/21787" rel="nofollow noreferrer" target="_blank">Source</a> </div> </div> <hr class="mb-5 mt-5"> <div class="container"> <div class="row"> <div class="col-sm-4 col-lg mb-sm-0 mb-5"> <strong>Popular programming languages</strong> <ul class="list-unstyled mb-0 mt-2"> <li class="mb-2"> <a href="/python" dir="ltr">Python</a> </li> <li class="mb-2"> <a href="/javascript" dir="ltr">JavaScript</a> </li> <li class="mb-2"> <a href="/typescript" dir="ltr">TypeScript</a> </li> <li class="mb-2"> <a href="/cpp" dir="ltr">C++</a> </li> <li class="mb-2"> <a href="/csharp" dir="ltr">C#</a> </li> </ul> </div> <div class="col-sm-4 col-lg mb-sm-0 mb-5"> <strong>Popular GitHub projects</strong> <ul class="list-unstyled mb-0 mt-2"> <li class="mb-2"> <a href="/microsoft/vscode" dir="ltr">vscode</a> </li> <li class="mb-2"> <a href="/numpy/numpy" dir="ltr">numpy</a> </li> <li class="mb-2"> <a href="/ant-design/ant-design" dir="ltr">ant-design</a> </li> <li class="mb-2"> <a href="/mui-org/material-ui" dir="ltr">material-ui</a> </li> <li class="mb-2"> <a href="/vercel/next-js" dir="ltr">next.js</a> </li> </ul> </div> <div class="col-sm-4 col-lg mb-0"> <strong>More GitHub projects</strong> <ul class="list-unstyled mb-0 mt-2"> <li class="mb-2"> <a href="/rust-lang/rust" dir="ltr">rust</a> </li> <li class="mb-2"> <a href="/moment/moment" dir="ltr">moment</a> </li> <li class="mb-2"> <a href="/yarnpkg/yarn" dir="ltr">yarn</a> </li> <li class="mb-2"> <a href="/mozilla/pdf-js" dir="ltr">pdf.js</a> </li> <li class="mb-2"> <a href="/JuliaLang/julia" dir="ltr">julia</a> </li> </ul> </div> </div> </div> <hr class="mb-5 mt-5"> <div class="container text-muted"> 漏 2024 bleepingcoder.com - <a href="/bleeps" rel="nofollow">Contact</a><br /> By using our site, you acknowledge that you have read and understand our <a href="/cookies" rel="nofollow">Cookie Policy</a> and <a href="/privacy" rel="nofollow">Privacy Policy</a>. </div> </footer> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin="anonymous"></script> <script async src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> <!--<script defer type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5fb2db66acbd74b2"></script>--> <script type="text/javascript" src="/assets/js/main.js"></script> <script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script></body> </html>