-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
25 lines (25 loc) · 1.42 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<UseArtifactsOutput>true</UseArtifactsOutput>
<NoWarn>$(NoWarn);FS0075</NoWarn>
<OtherFlags>$(OtherFlags) --parallelreferenceresolution --test:GraphBasedChecking --test:ParallelOptimization --test:ParallelIlxGen --strict-indentation+</OtherFlags>
<UseLocalFableCompiler>false</UseLocalFableCompiler>
</PropertyGroup>
<ItemGroup Condition="'$(UseLocalFableCompiler)' == 'true'">
<ProjectReference Include="../../Fable/src/Fable.Compiler/Fable.Compiler.fsproj"/>
<ProjectReference Include="../../Fable/src/Fable.Transforms/Fable.Transforms.fsproj"/>
<Reference Include="../../Fable/lib/fcs/FSharp.Core.dll"/>
<Reference Include="../../Fable/lib/fcs/FSharp.Compiler.Service.dll"/>
</ItemGroup>
<ItemGroup Condition="'$(UseLocalFableCompiler)' == 'false'">
<PackageReference Include="Fable.Compiler"/>
</ItemGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/nojaf/vite-plugin-fable</RepositoryUrl>
<PackageProjectUrl>https://nojaf.com/vite-plugin-fable/</PackageProjectUrl>
<FsDocsLicenseLink>https://github.com/nojaf/vite-plugin-fable/blob/main/LICENSE</FsDocsLicenseLink>
<Authors>Florian Verdonck</Authors>
</PropertyGroup>
</Project>