-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathOpenScadGraphEditor.csproj
56 lines (55 loc) · 2.63 KB
/
OpenScadGraphEditor.csproj
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
<Project Sdk="Godot.NET.Sdk/3.3.0">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<LangVersion>8</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Antlr4.CodeGenerator" Version="4.6.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Antlr4.Runtime" Version="4.6.6" />
<PackageReference Include="GodotExt" Version="0.2.0" />
<PackageReference Include="GodotTestDriver" Version="1.0.0-pre1" />
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
<PackageReference Include="KdTree" Version="1.4.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Serilog" Version="2.11.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.utility" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<Content Include=".gitignore" />
<Content Include="addons\foldout\foldout.gd" />
<Content Include="addons\GodotXUnit\.gitignore" />
<Content Include="addons\GodotXUnit\assets\check.png" />
<Content Include="addons\GodotXUnit\assets\check.png.import" />
<Content Include="addons\GodotXUnit\assets\error.png" />
<Content Include="addons\GodotXUnit\assets\error.png.import" />
<Content Include="addons\GodotXUnit\assets\running.png" />
<Content Include="addons\GodotXUnit\assets\running.png.import" />
<Content Include="addons\GodotXUnit\assets\warn.png" />
<Content Include="addons\GodotXUnit\assets\warn.png.import" />
<Content Include="addons\GodotXUnit\Directory.Build.props" />
<Content Include="addons\GodotXUnit\LICENSE" />
<Content Include="addons\GodotXUnit\plugin.cfg" />
<Content Include="addons\GodotXUnit\README" />
<Content Include="addons\GodotXUnit\XUnitDock.tscn" />
<Content Include="addons\GodotXUnit\_work\.gdignore" />
<Content Include="addons\rotate_container\rotate_container.gd" />
<Content Include="LICENSE" />
<Content Include="README.md" />
<Content Include="Tests\Data\import_test.scad" />
</ItemGroup>
<ItemGroup>
<Antlr4 Update="OpenScadParser.g4">
<Listener>false</Listener>
<CustomToolNamespace>OpenScadGraphEditor.Library.External</CustomToolNamespace>
</Antlr4>
</ItemGroup>
<PropertyGroup>
<Antlr4UseCSharpGenerator>True</Antlr4UseCSharpGenerator>
</PropertyGroup>
</Project>