forked from DigitalPrimates/Randori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Randori.csproj
107 lines (107 loc) · 5.03 KB
/
Randori.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
107
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B5057A8F-1D0D-4A8C-A16E-FD9473888DAA}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>randori</RootNamespace>
<AssemblyName>Randori</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="SharpKit.Html, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2575297a09c47a96, processorArchitecture=MSIL" />
<Reference Include="SharpKit.JavaScript, Version=1.5.0.0, Culture=neutral, PublicKeyToken=2575297a09c47a96, processorArchitecture=MSIL" />
<Reference Include="SharpKit.jQuery, Version=1.6.4.0, Culture=neutral, PublicKeyToken=2575297a09c47a96, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Compile Include="behaviors\AbstractRenderer.cs" />
<Compile Include="behaviors\List.cs" />
<Compile Include="behaviors\list\DataRendererProvider.cs" />
<Compile Include="behaviors\SimpleList.cs" />
<Compile Include="behaviors\viewStack\MediatorCapturer.cs" />
<Compile Include="bus\AbstractEventBus.cs" />
<Compile Include="attributes\HtmlMergedFile.cs" />
<Compile Include="attributes\Inject.cs" />
<Compile Include="attributes\View.cs" />
<Compile Include="behaviors\AbstractBehavior.cs" />
<Compile Include="behaviors\AbstractMediator.cs" />
<Compile Include="behaviors\template\TemplateRenderer.cs" />
<Compile Include="behaviors\ViewStack.cs" />
<Compile Include="behaviors\viewStack\ViewChangeAnimator.cs" />
<Compile Include="content\ContentCache.cs" />
<Compile Include="content\ContentResolver.cs" />
<Compile Include="content\ContentLoader.cs" />
<Compile Include="content\ContentParser.cs" />
<Compile Include="data\HashMap.cs" />
<Compile Include="dom\DomExtensionFactory.cs" />
<Compile Include="dom\DomWalker.cs" />
<Compile Include="dom\ElementDescriptorFactory.cs" />
<Compile Include="dom\ExternalBehaviorFactory.cs" />
<Compile Include="i18n\AbstractTranslator.cs" />
<Compile Include="i18n\LocalizationProvider.cs" />
<Compile Include="i18n\NoOpTranslator.cs" />
<Compile Include="i18n\PropertyFileTranslator.cs" />
<Compile Include="service\AbstractService.cs" />
<Compile Include="service\ServiceConfig.cs" />
<Compile Include="utilities\GlobalUtilities.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="service\AbstractToken.cs" />
<Compile Include="service\serializer\AbstractParser.cs" />
<Compile Include="service\serializer\ParserToken.cs" />
<Compile Include="service\ServiceToken.cs" />
<Compile Include="startup\RandoriApplication.cs" />
<Compile Include="startup\RandoriModule.cs" />
<Compile Include="styles\StyleExtensionManager.cs" />
<Compile Include="styles\StyleExtensionMap.cs" />
<Compile Include="styles\StyleExtensionMapEntry.cs" />
<Compile Include="template\TemplateBuilder.cs" />
<Compile Include="timer\Timer.cs" />
</ItemGroup>
<ItemGroup>
<SkcPlugin Include="net.digitalPrimates.GuiceMetadataPlugin, RandoriSharpKitExtensions">
<InProject>false</InProject>
</SkcPlugin>
</ItemGroup>
<ItemGroup>
<Folder Include="loader\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RandoriGuiceJS\RandoriGuiceJS.csproj">
<Project>{37704182-0ED6-44E6-B351-69A9BAD717EE}</Project>
<Name>RandoriGuiceJS</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<Import Project="$(MSBuildBinPath)\SharpKit\5\SharpKit.Build.targets" />
</Project>