ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/EmuXPortal/branches/mono-xml-linq/EmuXPortal.Api/EmuXPortal.Api.csproj
Revision: 329
Committed: Tue Dec 19 00:57:24 2017 UTC (5 years, 5 months ago) by william
File size: 2897 byte(s)
Log Message:
+ creating a branch to load xml data using linq

File Contents

# User Rev Content
1 william 300 <?xml version="1.0" encoding="utf-8"?>
2     <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3     <PropertyGroup>
4     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6     <ProjectGuid>{E3E705C1-2051-4332-AE10-0D31F24AE40C}</ProjectGuid>
7     <OutputType>Library</OutputType>
8     <RootNamespace>EmuXPortal.Api</RootNamespace>
9     <AssemblyName>EmuXPortal.Api</AssemblyName>
10 william 302 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
11 william 300 </PropertyGroup>
12     <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
13     <DebugSymbols>true</DebugSymbols>
14     <DebugType>full</DebugType>
15     <Optimize>false</Optimize>
16     <OutputPath>bin\Debug</OutputPath>
17     <DefineConstants>DEBUG;</DefineConstants>
18     <ErrorReport>prompt</ErrorReport>
19     <WarningLevel>4</WarningLevel>
20     <ConsolePause>false</ConsolePause>
21     </PropertyGroup>
22     <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
23     <DebugType>full</DebugType>
24     <Optimize>true</Optimize>
25     <OutputPath>bin\Release</OutputPath>
26     <ErrorReport>prompt</ErrorReport>
27     <WarningLevel>4</WarningLevel>
28     <ConsolePause>false</ConsolePause>
29     </PropertyGroup>
30     <ItemGroup>
31     <Reference Include="System" />
32 william 304 <Reference Include="Enterprise.CrossPlatform">
33     <HintPath>..\deps\Enterprise.CrossPlatform\Enterprise.CrossPlatform.dll</HintPath>
34     </Reference>
35     <Reference Include="Enterprise.Logging">
36     <HintPath>..\deps\Enterprise.Logging\Enterprise.Logging.dll</HintPath>
37     </Reference>
38     <Reference Include="System.Windows.Forms" />
39     <Reference Include="System.Xml" />
40     <Reference Include="System.Drawing" />
41 william 313 <Reference Include="System.Xml.Linq" />
42 william 300 </ItemGroup>
43     <ItemGroup>
44     <Compile Include="Properties\AssemblyInfo.cs" />
45 william 304 <Compile Include="Api\ConfigLoader.cs" />
46     <Compile Include="Api\DisplayHelper.cs" />
47     <Compile Include="Api\EmuConfig.cs" />
48     <Compile Include="Api\ParserEventSource.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 william 311 <Compile Include="Api\InternalConsts.cs" />
54     <Compile Include="Api\IEmuPlatform.cs" />
55     <Compile Include="Api\IEmuRom.cs" />
56 william 312 <Compile Include="Api\ISerializer.cs" />
57 william 313 <Compile Include="Api\RomCache.cs" />
58 william 300 </ItemGroup>
59     <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
60 william 302 <ItemGroup>
61 william 303 <ProjectReference Include="..\EmuXPortal.Versioning\EmuXPortal.Versioning.csproj">
62 william 302 <Project>{C3DDF869-7910-4F12-AAA4-C2DD96539D3D}</Project>
63     <Name>EmuXPortal.Versioning</Name>
64     </ProjectReference>
65     </ItemGroup>
66 william 304 <ItemGroup>
67     <Folder Include="Api\" />
68     </ItemGroup>
69 william 300 </Project>