-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBattle-Card.csproj
39 lines (39 loc) · 1.81 KB
/
Battle-Card.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
<Project Sdk="Godot.NET.Sdk/3.3.0">
<PropertyGroup>
<ProjectGuid>{010D7CCC-47C7-48BA-98DE-695DABC4CF94}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>BattleCard</RootNamespace>
<AssemblyName>Battle-Card</AssemblyName>
<TargetFramework>net472</TargetFramework>
<!--The following properties were overridden during migration to prevent errors.
Enabling them may require other manual changes to the project and its files.-->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Deterministic>false</Deterministic>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="data\src\Engine\CardBase.cs" />
<Compile Include="data\src\Engine\GameHUD.cs" />
<Compile Include="data\src\Engine\Main.cs" />
<Compile Include="data\src\Engine\Manage.cs" />
<Compile Include="data\src\Engine\Menu.cs" />
<Compile Include="data\src\Library\ArithmeticExpressions.cs" />
<Compile Include="data\src\Library\AST_Root.cs" />
<Compile Include="data\src\Library\BooleanExpresion.cs" />
<Compile Include="data\src\Library\Cards.cs" />
<Compile Include="data\src\Library\Compiler.cs" />
<Compile Include="data\src\Library\Errors.cs" />
<Compile Include="data\src\Library\Expressions.cs" />
<Compile Include="data\src\Library\Parser.cs" />
<Compile Include="data\src\Library\Power.cs" />
<Compile Include="data\src\Library\PowerData.cs" />
<Compile Include="data\src\Library\SpacePosition.cs" />
<Compile Include="data\src\Library\Token.cs" />
<Compile Include="data\src\Library\Tokenizer.cs" />
<Compile Include="data\src\Library\TokenStream.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
</Project>