MongoDB on Linux - Data directory /data/db not found
1 min read
Fix the error that occurs when trying to run freshly-installed MongoDB on a Linux machine.
This problem usually happens when you're working on a solution with multiple projects that were created using different versions of the .NET SDK.
The project was restored using Microsoft.NETCore.App version x.x.x, but with current settings, version y.y.y would be used instead
You may encounter this error when running dotnet build or maybe only on dotnet publish. In any case, the best way to get rid of this problem for good is the following:
.sln file resides, create a new file named Directory.Build.props. If you're not working with a solution (not using Visual Studio), you can use create it on the root directory of your repository (usually where .gitignore is;<Project> <PropertyGroup> <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch> <GenerateFullPaths>true</GenerateFullPaths> <LangVersion>latest</LangVersion> </PropertyGroup> </Project>
What these properties do is make your projects always restore and compile using the latest version available.
Try running the command again. If all went right, it should be compiling successfully now!
In case it doesn't work for you, you can add these lines manually on each of the .csproj files.
Thanks for reading!
MongoDB on Linux - Data directory /data/db not found
1 min read
Fix the error that occurs when trying to run freshly-installed MongoDB on a Linux machine.
.NET Core - Method not allowed on PUT and DELETE requests
2 min read
See how to solve this annoying error after deploying your .NET Core API.
Setting up Storybook on an Astro project
7 min read
I really, really thought this was gonna be easy.
Separating my website's content from its code
4 min read
Having an open source website is great, but having the content stored in the same spot as the code has some issues. On this post I walk through what I did to keep them separated.