-
Notifications
You must be signed in to change notification settings - Fork 1
/
ForEditing.fsproj
68 lines (62 loc) · 3.12 KB
/
ForEditing.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net48</TargetFramework>
<UseWPF>false</UseWPF>
<UseWindowsForms>true</UseWindowsForms> <!-- to get screen resolution and show dialogs-->
<LangVersion>preview</LangVersion>
<OtherFlags>$(OtherFlags)--warnon:3390</OtherFlags> <!-- warnon:3390 is to verify xml docstrings https://devblogs.microsoft.com/dotnet/announcing-f-5/#improved-compiler-analysis-for-library-authors -->
<OtherFlags>$(OtherFlags) --warnon:1182</OtherFlags> <!-- 1182: warn on unused variables -->
</PropertyGroup>
<ItemGroup>
<!-- otherwise the minimum FSharp.Core version would be forced by the SDK used for building it. this would be needlessly too high-->
<PackageReference Update="FSharp.Core" Version="6.0.7" />
<PackageReference Include="RhinoCommon" Version="7.0.20314.3001" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="FsEx" Version="0.15.0" />
</ItemGroup>
<ItemGroup>
<None Include="combineIntoOneFile.fsx" />
<None Include="Readme.md" />
<Compile Include="Src/Exceptions.fs" />
<Compile Include="Src/RhinoSync.fs" />
<Compile Include="Src/State.fs" />
<Compile Include="Src/ToNiceStringExtensions.fs" />
<Compile Include="Src/ToNiceStringSetup.fs" />
<Compile Include="Src/Util.fs" />
<Compile Include="Src/UtilLayer.fs" />
<Compile Include="Src/ObjectFilterEnum.fs" />
<Compile Include="Src/Scripting_Header.fs" />
<Compile Include="Src/Scripting_Coerce.fs" />
<Compile Include="Src/Scripting_Layer.fs" />
<Compile Include="Src/Scripting_Application.fs" />
<Compile Include="Src/Scripting_Block.fs" />
<Compile Include="Src/Scripting_Curve.fs" />
<Compile Include="Src/Scripting_Dimension.fs" />
<Compile Include="Src/Scripting_Document.fs" />
<Compile Include="Src/Scripting_Geometry.fs" />
<Compile Include="Src/Scripting_Grips.fs" />
<Compile Include="Src/Scripting_Group.fs" />
<Compile Include="Src/Scripting_Hatch.fs" />
<Compile Include="Src/Scripting_Light.fs" />
<Compile Include="Src/Scripting_Line.fs" />
<Compile Include="Src/Scripting_Linetype.fs" />
<Compile Include="Src/Scripting_Material.fs" />
<Compile Include="Src/Scripting_Mesh.fs" />
<Compile Include="Src/Scripting_Object.fs" />
<Compile Include="Src/Scripting_Plane.fs" />
<Compile Include="Src/Scripting_PointVector.fs" />
<Compile Include="Src/Scripting_Selection.fs" />
<Compile Include="Src/Scripting_Surface.fs" />
<Compile Include="Src/Scripting_Toolbar.fs" />
<Compile Include="Src/Scripting_Transformation.fs" />
<Compile Include="Src/Scripting_UserData.fs" />
<Compile Include="Src/Scripting_UserInterface.fs" />
<Compile Include="Src/Scripting_Utility.fs" />
<Compile Include="Src/Scripting_Views.fs" />
<!-- included only for editing referenced file names:-->
<None Include="ForPublishing.fsproj" />
<None Include="ForPublishingV7.fsproj" />
<None Include="ForEditingV7.fsproj" />
</ItemGroup>
</Project>