ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/EmuXPortal/branches/mono/EmuXPortal/EmuXPortal.csproj
Revision: 264
Committed: Thu Mar 17 04:23:49 2016 UTC (7 years, 2 months ago) by william
File size: 5342 byte(s)
Log Message:
update emuxportal for building under mono

File Contents

# Content
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6 <ProjectGuid>{C6A57BE4-A8B6-4298-B022-62F40FB1CB18}</ProjectGuid>
7 <OutputType>WinExe</OutputType>
8 <AppDesignerFolder>Properties</AppDesignerFolder>
9 <RootNamespace>EmuXPortal</RootNamespace>
10 <AssemblyName>EmuXPortal</AssemblyName>
11 <TargetFrameworkProfile>
12 </TargetFrameworkProfile>
13 <FileAlignment>512</FileAlignment>
14 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
17 <PlatformTarget>x86</PlatformTarget>
18 <Optimize>false</Optimize>
19 <OutputPath>bin\x86\Debug</OutputPath>
20 <WarningLevel>4</WarningLevel>
21 <UseVSHostingProcess>false</UseVSHostingProcess>
22 </PropertyGroup>
23 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
24 <PlatformTarget>x86</PlatformTarget>
25 <Optimize>false</Optimize>
26 <OutputPath>bin\x86\Release</OutputPath>
27 <WarningLevel>4</WarningLevel>
28 </PropertyGroup>
29 <ItemGroup>
30 <Reference Include="System" />
31 <Reference Include="System.Core" />
32 <Reference Include="System.Xml.Linq" />
33 <Reference Include="System.Data.DataSetExtensions" />
34 <Reference Include="System.Data" />
35 <Reference Include="System.Drawing" />
36 <Reference Include="System.Windows.Forms" />
37 <Reference Include="System.Xml" />
38 <Reference Include="Enterprise.Logging">
39 <HintPath>..\deps\Enterprise.Logging\Enterprise.Logging.dll</HintPath>
40 </Reference>
41 <Reference Include="Utilities.TransparentControls">
42 <HintPath>..\deps\TransparentControls\Utilities.TransparentControls.dll</HintPath>
43 </Reference>
44 </ItemGroup>
45 <ItemGroup>
46 <Compile Include="Api\ConfigLoader.cs" />
47 <Compile Include="Api\DisplayHelper.cs" />
48 <Compile Include="Api\EmuConfig.cs" />
49 <Compile Include="Api\PlatformParser.cs" />
50 <Compile Include="Api\RomConfig.cs" />
51 <Compile Include="Api\RomFavorite.cs" />
52 <Compile Include="Api\RomParser.cs" />
53 <Compile Include="Form1.cs">
54 <SubType>Form</SubType>
55 </Compile>
56 <Compile Include="Form1.Designer.cs">
57 <DependentUpon>Form1.cs</DependentUpon>
58 </Compile>
59 <Compile Include="GameControl.cs">
60 <SubType>UserControl</SubType>
61 </Compile>
62 <Compile Include="GameControl.Designer.cs">
63 <DependentUpon>GameControl.cs</DependentUpon>
64 </Compile>
65 <Compile Include="PlatformControl.cs">
66 <SubType>UserControl</SubType>
67 </Compile>
68 <Compile Include="PlatformControl.Designer.cs">
69 <DependentUpon>PlatformControl.cs</DependentUpon>
70 </Compile>
71 <Compile Include="Program.cs" />
72 <Compile Include="Properties\AssemblyInfo.cs" />
73 <EmbeddedResource Include="Form1.resx">
74 <DependentUpon>Form1.cs</DependentUpon>
75 </EmbeddedResource>
76 <EmbeddedResource Include="GameControl.resx">
77 <DependentUpon>GameControl.cs</DependentUpon>
78 </EmbeddedResource>
79 <EmbeddedResource Include="PlatformControl.resx">
80 <DependentUpon>PlatformControl.cs</DependentUpon>
81 </EmbeddedResource>
82 <EmbeddedResource Include="Properties\Resources.resx">
83 <Generator>ResXFileCodeGenerator</Generator>
84 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
85 <SubType>Designer</SubType>
86 </EmbeddedResource>
87 <Compile Include="Properties\Resources.Designer.cs">
88 <AutoGen>True</AutoGen>
89 <DependentUpon>Resources.resx</DependentUpon>
90 <DesignTime>True</DesignTime>
91 </Compile>
92 <None Include="app.config" />
93 <None Include="Properties\Settings.settings">
94 <Generator>SettingsSingleFileGenerator</Generator>
95 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
96 </None>
97 <Compile Include="Properties\Settings.Designer.cs">
98 <AutoGen>True</AutoGen>
99 <DependentUpon>Settings.settings</DependentUpon>
100 <DesignTimeSharedInput>True</DesignTimeSharedInput>
101 </Compile>
102 <None Include="..\config.ini">
103 <Link>config.ini</Link>
104 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
105 </None>
106 <None Include="..\config-dbg.ini">
107 <Link>config-dbg.ini</Link>
108 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
109 </None>
110 <None Include="..\emu.config">
111 <Link>emu.config</Link>
112 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
113 </None>
114 </ItemGroup>
115 <ItemGroup>
116 <None Include="Resources\games.png" />
117 </ItemGroup>
118 <ItemGroup>
119 <None Include="Resources\game.png" />
120 </ItemGroup>
121 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
122 <PropertyGroup>
123 <PostBuildEvent>
124 </PostBuildEvent>
125 </PropertyGroup>
126 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
127 Other similar extension points exist, see Microsoft.Common.targets.
128 <Target Name="BeforeBuild">
129 </Target>
130 <Target Name="AfterBuild">
131 </Target>
132 -->
133 </Project>