Create a console app similar to this:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Update="test.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Compile Include="Program.fs" />
</ItemGroup>
</Project>
then build it.
Note that under the bin folder, test.json is not included. In a C# project, it is included. This doesn't require VS to reproduce, so it's likely us.
Create a console app similar to this:
then build it.
Note that under the bin folder,
test.jsonis not included. In a C# project, it is included. This doesn't require VS to reproduce, so it's likely us.