new fsproj should generate assemblyinfo attributes from props.
ref dotnet/netcorecli-fsc#93
- in
dotnet/sdk is done in the language agnostic target Microsoft.NET.GenerateAssemblyInfo.targets#L93-L96 using the WriteCodeFragment task
- atm the F# language is not implemented, so doesnt generate the file with attributes
- the
WriteCodeFragment is defined inside Microsoft/msbuild and contains a version with CodeDom and another for coreclr (just doing stringbuilder), and support both c# and vb
As a note i tried to add the F# in the same way as C#/VB, but atm PR was stopped for a design decision
dotnet/msbuild#2132 (comment) /cc @KevinRansom @cartermp
new fsproj should generate assemblyinfo attributes from props.
ref dotnet/netcorecli-fsc#93
dotnet/sdkis done in the language agnostic target Microsoft.NET.GenerateAssemblyInfo.targets#L93-L96 using theWriteCodeFragmenttaskWriteCodeFragmentis defined inside Microsoft/msbuild and contains a version with CodeDom and another for coreclr (just doing stringbuilder), and support both c# and vbAs a note i tried to add the F# in the same way as C#/VB, but atm PR was stopped for a design decision
dotnet/msbuild#2132 (comment) /cc @KevinRansom @cartermp