Skip to content

Commit 3f979bc

Browse files
committed
update package specs
1 parent 261d01d commit 3f979bc

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ build_script:
99
test: off
1010
version: '{build}'
1111
artifacts:
12-
- path: artifacts\bin\fcs\Release\*.nupkg
12+
- path: artifacts\bin\fcs\Release\*.nupkg
13+
- path: artifacts\packages\Release\Shipping\*.nupkg

fcs/FSharp.Compiler.Service.MSBuild.v12/FSharp.Compiler.Service.MSBuild.v12.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
66
<DefineConstants>$(DefineConstants);CROSS_PLATFORM_COMPILER</DefineConstants>
77
<DefineConstants>$(DefineConstants);ENABLE_MONO_SUPPORT</DefineConstants>
8+
<DebugType>embedded</DebugType>
89
</PropertyGroup>
910
<PropertyGroup>
1011
<Description>Additional DLL for legacy compat for the F# compiler service.</Description>
1112
<Summary>Additional DLL for legacy compat for the F# compiler service.</Summary>
1213
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1314
<Authors>F# community contributors</Authors>
14-
<PackageLicenseUrl>https://github.com/fsharp/FSharp.Compiler.Service/blob/master/LICENSE</PackageLicenseUrl>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1516
<PackageProjectUrl>https://github.com/fsharp/FSharp.Compiler.Service</PackageProjectUrl>
1617
<PackageIcon>logo.png</PackageIcon>
1718
<PackageTags>F#, compiler, msbuild</PackageTags>

fcs/FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
<Tailcalls>true</Tailcalls> <!-- .tail annotations always emitted for this binary, even in debug mode -->
2222
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2323
<GenerateDocumentationFile>true</GenerateDocumentationFile>
24+
<DebugType>embedded</DebugType>
2425
</PropertyGroup>
2526
<PropertyGroup>
2627
<Summary>The F# compiler as library. For editors, for tools, for scripting. For you.</Summary>
2728
<Description>The F# compiler services package contains a custom build of the F# compiler that exposes additional functionality for implementing F# language bindings, additional tools based on the compiler or refactoring tools. The package also includes F# interactive service that can be used for embedding F# scripting into your applications.</Description>
2829
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2930
<Authors>F# community contributors</Authors>
30-
<PackageLicenseUrl>https://github.com/fsharp/FSharp.Compiler.Service/blob/master/LICENSE</PackageLicenseUrl>
3131
<Authors>Microsoft Corporation; F# community contributors</Authors>
3232
<PackageLicenseExpression>MIT</PackageLicenseExpression>
3333
<PackageProjectUrl>https://github.com/fsharp/FSharp.Compiler.Service</PackageProjectUrl>

src/fsharp/FSharp.DependencyManager.Nuget/FSharp.DependencyManager.Nuget.fsproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,19 @@
1313
<DefineConstants>$(DefineConstants);MSBUILD_AT_LEAST_15</DefineConstants>
1414
<OtherFlags>$(OtherFlags) --warnon:1182 --maxerrors:20 --extraoptimizationloops:1</OtherFlags>
1515
<Tailcalls>true</Tailcalls> <!-- .tail annotations always emitted for this binary, even in debug mode -->
16+
<DebugType>embedded</DebugType>
17+
</PropertyGroup>
18+
19+
<PropertyGroup>
20+
<Summary>#r support for Nuget packages in F# Interactive</Summary>
21+
<Description>Reference this package via --compilertool to get access to `#r "nuget: {package}"` support in F# scripts</Description>
22+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
23+
<Authors>F# community contributors</Authors>
24+
<Authors>Microsoft Corporation; F# community contributors</Authors>
25+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
26+
<PackageProjectUrl>https://github.com/fsharp/FSharp.Compiler.Service</PackageProjectUrl>
27+
<PackageIcon>logo.png</PackageIcon>
28+
<PackageTags>F#, fsharp, interactive, compiler, editor</PackageTags>
1629
</PropertyGroup>
1730

1831
<Target Name="CopyToBuiltBin" BeforeTargets="BuiltProjectOutputGroup" AfterTargets="CoreCompile">

0 commit comments

Comments
 (0)