-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathFSharpPlus.Providers.fsproj
More file actions
47 lines (43 loc) · 2.23 KB
/
FSharpPlus.Providers.fsproj
File metadata and controls
47 lines (43 loc) · 2.23 KB
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
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="'$(CompilerTest)' == 'true'">
<FscToolPath>$(FSC_ToolPathCompilerBuild)</FscToolPath>
<FscToolExe>$(FSC_ExePathCompilerBuild)</FscToolExe>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<Title>FSharpPlus.Providers</Title>
<AssemblyName>FSharpPlus.Providers</AssemblyName>
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
<FileVersion>$(VersionPrefix).0</FileVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<OtherFlags>--nowarn:0044 --warnon:1182 $(OtherFlags)</OtherFlags>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<!--
https://github.com/fsprojects/FSharp.TypeProviders.SDK/issues/408#issuecomment-2200299743
Make the consuming project compile on .NET 8 or later
-->
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<BaseOutputPath>..\bin</BaseOutputPath>
<Configurations>Debug;Release;Fable</Configurations>
<Platforms>AnyCPU</Platforms>
<LangVersion Condition=" '$(Configuration)' == 'Fable'">5.0</LangVersion>
<DefineConstants Condition=" '$(Configuration)' == 'Fable'">$(DefineConstants);FABLE_COMPILER</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="../../../external/FSharp.TypeProviders.SDK/src/ProvidedTypes.fsi" />
<Compile Include="../../../external/FSharp.TypeProviders.SDK/src/ProvidedTypes.fs" />
<Compile Include="TypeNat.Provider.fs" />
<Compile Include="Matrix.Provider.fs" />
<Compile Include="TypeProviderAssembly.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../FSharpPlus.TypeLevel.fsproj" />
</ItemGroup>
</Project>