-
Notifications
You must be signed in to change notification settings - Fork 25
/
robotlegs-sharp-platform-unity.csproj
75 lines (75 loc) · 4.83 KB
/
robotlegs-sharp-platform-unity.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
<?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>
<ProjectGuid>{9DA7E079-E927-439D-BC50-BBD2EB30B5D3}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>robotlegs.bender</RootNamespace>
<AssemblyName>Robotlegs-Sharp-Framework</AssemblyName>
<AssemblyName>Robotlegs-Sharp-Platform-Unity</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</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>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup />
<ItemGroup>
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\DependencyProviders\UnityComponentProvider.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ContextViews\UnityStageCrawlerConfig.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ContextViews\UnityFallbackStageCrawlerConfig.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ContextViews\ContextViewTransformExtension.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ContextViews\Impl\TransformContextView.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ViewManagement\Impl\UnityViewStateWatcher.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ViewManagement\Impl\UnityStageCrawler.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Bundles\UnityMultiContextBundle.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Bundles\UnitySingleContextBundle.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ViewManagement\UnityParentFinderExtension.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ViewManagement\Impl\UnityFallbackStageCrawler.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ViewManagement\Impl\UnityParentFinder.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\ViewManagement\Impl\UnityViewStateWatcherExtension.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\DebugLogging\DebugLoggingExtension.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\DebugLogging\Impl\DebugLogTarget.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\UnitySingletons\Impl\SingletonFactory.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\UnitySingletons\UnitySingletonsExtension.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\UnitySingletons\Impl\UnitySingletonsDisplay.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\Mediation\Impl\View.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\Mediation\Impl\EventView.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\Mediation\Impl\MediatorAttach.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\Mediation\Impl\UnityMediatorManager.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\Extensions\Mediation\UnityMediatorManagerExtension.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\DependencyProviders\AbstractUnityComponentProvider.cs" />
<Compile Include="src\Robotlegs\Bender\Platforms\Unity\DependencyProviders\UnitySingletonComponentProvider.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="swiftsuspenders-sharp">
<HintPath>lib\swiftsuspenders-sharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine">
<HintPath>lib\UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="robotlegs-sharp-framework.csproj">
<Project>{BA0B7671-3283-4AFE-B5B2-8CF9BD9C74BE}</Project>
<Name>robotlegs-sharp-framework</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>