-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02_DynamicCodeTests.csproj
106 lines (106 loc) · 4.61 KB
/
02_DynamicCodeTests.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8F163935-50FF-4F0A-A9CF-C5B44774B240}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>DynamicCodeTests</RootNamespace>
<AssemblyName>DynamicCodeTests</AssemblyName>
<StartupObject>Dynamic.JGLApp</StartupObject>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CustomCommands>
<CustomCommands>
<Command type="BeforeExecute" command="cp -f ${SolutionDir}/DynamicCodeTests/UI/CodeWindow.glade ${TargetDir}/CodeWindow.glade" workingdir="" pauseExternalConsole="True" />
</CustomCommands>
</CustomCommands>
<Externalconsole>true</Externalconsole>
<Commandlineparameters>--sync --keystart</Commandlineparameters>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CustomCommands>
<CustomCommands>
<Command type="BeforeExecute" command="cp -f ${SolutionDir}/DynamicCodeTests/UI/CodeWindow.glade ${TargetDir}/" externalConsole="True" pauseExternalConsole="True" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data.Linq" />
<Reference Include="System.Xml" />
<Reference Include="Mono.CSharp" />
<Reference Include="OpenTK">
<HintPath>..\..\..\..\Resources\CS\OpenTK 1.0\Binaries\OpenTK\Release\OpenTK.dll</HintPath>
</Reference>
<Reference Include="atk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Private>False</Private>
</Reference>
<Reference Include="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Private>False</Private>
</Reference>
<Reference Include="glade-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Private>False</Private>
</Reference>
<Reference Include="glib-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Private>False</Private>
</Reference>
<Reference Include="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="JGLApp.cs" />
<Compile Include="UI\EntityTreeNode.cs" />
<Compile Include="UI\DynamicCodePage.cs" />
<Compile Include="UI\SceneInfoPanel.cs" />
<Compile Include="UI\CodeWindow.cs" />
<Compile Include="UI\StaticCodePage.cs" />
<Compile Include="UI\SceneTypeDialog.cs" />
<Compile Include="Project.cs" />
<Compile Include="UI\ProjectDialog.cs" />
<Compile Include="Compiler.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="XML comment clipboard.txt.cs" />
<None Include="UI\CodeWindow.glade" />
<None Include="DynamicCode\code_clipboard.cs" />
<None Include="UI\CodeCompletionWindow.cs" />
<None Include="Features.txt" />
<None Include="DynamicCode\Heirarchy\Origin.cs" />
<None Include="DynamicCode\Heirarchy\Scene1.cs" />
<None Include="DynamicCode\Heirarchy\Tree1.cs" />
<None Include="DynamicCode\Heirarchy\WhiteLight.cs" />
<None Include="DynamicCode\EmptyMain.cs" />
<None Include="Logs\Dynamic.Trace.Log" />
<None Include="Logs\Dynamic_JGLApp.Trace.Log" />
<None Include="Logs\JGL.Trace.Log" />
<None Include="Logs\140502-0526-OutputFirstBuggyImplementationOfRecentFilesAndProjects.txt" />
</ItemGroup>
<ItemGroup>
<Folder Include="DynamicCode\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\JGL\00_JGL.csproj">
<Project>{1A4EC1C4-498A-42C7-ABC6-D4B9D889B8A9}</Project>
<Name>00_JGL</Name>
</ProjectReference>
</ItemGroup>
</Project>