-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathFSharp.Configuration.DesignTime.fsproj
More file actions
51 lines (50 loc) · 2.48 KB
/
FSharp.Configuration.DesignTime.fsproj
File metadata and controls
51 lines (50 loc) · 2.48 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
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\netfx.props" />
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;net461;net5.0-windows</TargetFrameworks>
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
<DefineConstants>ENABLE_RESXPROVIDER</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net5.0-windows'">
<UseWindowsForms>true</UseWindowsForms>
<DefineConstants>ENABLE_RESXPROVIDER</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Web" Condition="'$(TargetFramework)' == 'net461'" />
<Reference Include="System.Windows.Forms" Condition="'$(TargetFramework)' == 'net461'" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\paket-files\fsprojects\FSharp.TypeProviders.SDK\src\ProvidedTypes.fsi">
<Paket>True</Paket>
<Link>paket-files/ProvidedTypes.fsi</Link>
</Compile>
<Compile Include="..\..\paket-files\fsprojects\FSharp.TypeProviders.SDK\src\ProvidedTypes.fs">
<Paket>True</Paket>
<Link>paket-files/ProvidedTypes.fs</Link>
</Compile>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="..\FSharp.Configuration.Runtime\TypeProviders.Helper.fs" />
<Compile Include="..\FSharp.Configuration.Runtime\ResXProvider.Runtime.fs" />
<Compile Include="..\FSharp.Configuration.Runtime\AppSettingsProvider.Runtime.fs" />
<Compile Include="..\FSharp.Configuration.Runtime\YamlConfigProvider.Runtime.fs" />
<Compile Include="..\FSharp.Configuration.Runtime\IniFileProvider.Runtime.fs" />
<Compile Include="ResXProvider.fs" />
<Compile Include="AppSettingsProvider.fs" />
<Compile Include="YamlConfigProvider.fs" />
<Compile Include="IniFileProvider.fs" />
<Compile Include="FSharp.Configuration.DesignTime.fs" />
<None Include="paket.references" />
<None Include="..\..\packages\NETStandard.Library.NETFramework\build\net461\lib\netstandard.dll" Condition="'$(TargetFramework)' == 'net461'">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>