forked from meebey/smuxi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrontend-Test.csproj
75 lines (75 loc) · 2.91 KB
/
Frontend-Test.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>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{06A95A33-EB35-4572-AC92-0887DAF75D7E}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Smuxi.Frontend.Test</RootNamespace>
<AssemblyName>smuxi-frontend-test</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\debug</OutputPath>
<DefineConstants>DEBUG;TRACE;LOG4NET</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<RunWithWarnings>false</RunWithWarnings>
<Execution>
<Execution clr-version="Net_2_0" />
</Execution>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RunWithWarnings>false</RunWithWarnings>
<Execution>
<Execution clr-version="Net_2_0" />
</Execution>
<DefineConstants>TRACE;LOG4NET</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Frontend.cs" />
<Compile Include="Main.cs" />
<Compile Include="TestUI.cs" />
<Compile Include="..\AssemblyVersion.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Engine\Engine.csproj">
<Project>{BCD52FCF-B7A8-42FB-AA8D-CF9921FF593E}</Project>
<Name>Engine</Name>
</ProjectReference>
<ProjectReference Include="..\Common\Common.csproj">
<Project>{73DEF91D-03FF-41E3-B2E1-3259AF247CA7}</Project>
<Name>Common</Name>
</ProjectReference>
<ProjectReference Include="..\Frontend\Frontend.csproj">
<Project>{7B1E3AB2-FB8C-4439-A2B4-2129EDBD79F8}</Project>
<Name>Frontend</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=a5715cc6d5c3540b">
<HintPath>..\..\lib\log4net.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Remoting" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Deployment.LinuxDeployData scriptName="smuxi-frontend-test" />
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>