We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Program.fs
net
The test templates (xunit, mstest) of F# always include a Program.fs, and is needed atm ( ref dotnet/netcorecli-fsc#79 ) for netcoreapp2.0
netcoreapp2.0
But that's annoying swithcing to net462 because there the project is a library (by design), and the entrypoint is not needed.
net462
Changes required: add the Program.fs under a Condition of the tfm or runtime (or better another test sdk property, if exists). like
Condition
<Compile Include="Program.fs" Condition=" '$(DontRemeberTheProp)' == '.NETCore' " />
/cc @dsyme @cartermp @KevinRansom
The text was updated successfully, but these errors were encountered:
+1, thanks
Sorry, something went wrong.
EntryPoint
Looks like this should be fixed with dotnet/test-templates#22
No branches or pull requests
The test templates (xunit, mstest) of F# always include a
Program.fs
, and is needed atm ( ref dotnet/netcorecli-fsc#79 ) fornetcoreapp2.0
But that's annoying swithcing to
net462
because there the project is a library (by design), and the entrypoint is not needed.Changes required: add the
Program.fs
under aCondition
of the tfm or runtime (or better another test sdk property, if exists). like/cc @dsyme @cartermp @KevinRansom
The text was updated successfully, but these errors were encountered: