forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.DotNet.Interactive.FSharp.fsproj
43 lines (35 loc) · 1.78 KB
/
Microsoft.DotNet.Interactive.FSharp.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>$(NoWarn);2003</NoWarn> <!-- AssemblyInformationalVersionAttribute contains a non-standard value -->
<Deterministic Condition="'$(NCrunch)' == '1'">false</Deterministic>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageDescription>Microsoft.DotNet.Interactive.IKernel implementation for F#</PackageDescription>
<PackageTags>interactive fsharp</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>;NU5104;2003</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('netstandard')) AND '$(OS)' == 'Windows_NT'">
<!-- the 2.1.503 F# compiler can produce PDBs that can't properly be converted, see https://github.com/Microsoft/visualfsharp/issues/5976 -->
<PublishWindowsPdb>false</PublishWindowsPdb>
</PropertyGroup>
<ItemGroup>
<Compile Include="FSharpKernel.fs" />
<Compile Include="FSharpKernelHelpers.fs" />
<Compile Include="FSharpPocketViewTags.fs" />
<Compile Include="FSharpKernelExtensions.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.DotNet.Interactive.Formatting\Microsoft.DotNet.Interactive.Formatting.csproj" />
<ProjectReference Include="..\Microsoft.DotNet.Interactive\Microsoft.DotNet.Interactive.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Compiler.Private.Scripting" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="$(MicrosoftCodeAnalysisWorkspacesCommonVersion)" />
<PackageReference Include="XPlot.Plotly" Version="3.0.1" />
</ItemGroup>
</Project>