ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.CorePlugins/RomCheater.CorePlugins.csproj
Revision: 212
Committed: Sat Jun 2 10:33:38 2012 UTC (11 years ago) by william
File size: 4398 byte(s)
Log Message:
ignore CS0436: importing conflicting types (AssemblyConfig)

File Contents

# User Rev Content
1 william 77 <?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)' == '' ">AnyCPU</Platform>
6     <ProductVersion>8.0.30703</ProductVersion>
7     <SchemaVersion>2.0</SchemaVersion>
8     <ProjectGuid>{DC27888E-E976-48B7-A422-12B39C0D3B65}</ProjectGuid>
9     <OutputType>Library</OutputType>
10     <AppDesignerFolder>Properties</AppDesignerFolder>
11     <RootNamespace>RomCheater.CorePlugins</RootNamespace>
12     <AssemblyName>RomCheater.CorePlugins</AssemblyName>
13     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14     <FileAlignment>512</FileAlignment>
15     </PropertyGroup>
16     <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17     <DebugSymbols>true</DebugSymbols>
18     <DebugType>full</DebugType>
19     <Optimize>false</Optimize>
20     <OutputPath>bin\Debug\</OutputPath>
21     <DefineConstants>DEBUG;TRACE</DefineConstants>
22     <ErrorReport>prompt</ErrorReport>
23     <WarningLevel>4</WarningLevel>
24 william 212 <NoWarn>1607,0436</NoWarn>
25 william 77 </PropertyGroup>
26     <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27     <DebugType>pdbonly</DebugType>
28     <Optimize>true</Optimize>
29     <OutputPath>bin\Release\</OutputPath>
30 william 185 <DefineConstants>TRACE;RELEASE</DefineConstants>
31 william 77 <ErrorReport>prompt</ErrorReport>
32     <WarningLevel>4</WarningLevel>
33 william 212 <NoWarn>1607,0436</NoWarn>
34 william 77 </PropertyGroup>
35 william 182 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'All Configurations|AnyCPU'">
36     <OutputPath>bin\All Configurations\</OutputPath>
37     </PropertyGroup>
38 william 77 <ItemGroup>
39     <Reference Include="System" />
40     <Reference Include="System.Core" />
41     <Reference Include="System.Xml.Linq" />
42     <Reference Include="System.Data.DataSetExtensions" />
43     <Reference Include="Microsoft.CSharp" />
44     <Reference Include="System.Data" />
45     <Reference Include="System.Xml" />
46     </ItemGroup>
47     <ItemGroup>
48     <Compile Include="..\VersioningSupport\SharedAssemblyInfo.cs">
49     <Link>Properties\SharedAssemblyInfo.cs</Link>
50     </Compile>
51 william 93 <Compile Include="Config\DolphinConfig.cs" />
52 william 81 <Compile Include="Config\GenericConfig.cs" />
53 william 92 <Compile Include="Config\PCSX2Config.cs" />
54 william 77 <Compile Include="Properties\AssemblyInfo.cs" />
55     </ItemGroup>
56     <ItemGroup>
57     <None Include="Properties\AssemblyInfo.cs.tmpl" />
58     </ItemGroup>
59 william 78 <ItemGroup>
60 william 117 <ProjectReference Include="..\RomCheater.Core\RomCheater.Core.csproj">
61     <Project>{A229722A-A477-4954-8BCB-9E3BD51B7D0B}</Project>
62     <Name>RomCheater.Core</Name>
63     </ProjectReference>
64 william 78 <ProjectReference Include="..\RomCheater.Logging\RomCheater.Logging.csproj">
65     <Project>{6A508C91-B8BB-4FE5-B9A8-C72D1832BC04}</Project>
66     <Name>RomCheater.Logging</Name>
67     </ProjectReference>
68     <ProjectReference Include="..\RomCheater.PluginFramework\RomCheater.PluginFramework.csproj">
69     <Project>{BA5A023F-B51B-4FAA-9477-B3C842FF47CA}</Project>
70     <Name>RomCheater.PluginFramework</Name>
71     </ProjectReference>
72 william 92 <ProjectReference Include="..\Win32\Sojaner.MemoryScanner\Sojaner.MemoryScanner.csproj">
73     <Project>{2A1D13EE-9C82-46F1-B02E-27A1C3E5F8A0}</Project>
74     <Name>Sojaner.MemoryScanner</Name>
75     </ProjectReference>
76 william 78 </ItemGroup>
77 william 80 <ItemGroup>
78     <Folder Include="Input\" />
79     <Folder Include="Window\" />
80     </ItemGroup>
81 william 77 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
82     <PropertyGroup>
83     <PreBuildEvent>"$(SolutionDir)deps\TortoiseSVN\SubWCRev.exe" "$(SolutionDir)." "$(ProjectDir)Properties\AssemblyInfo.cs.tmpl" "$(ProjectDir)Properties\AssemblyInfo.cs"</PreBuildEvent>
84     </PropertyGroup>
85 william 177 <PropertyGroup>
86 william 190 <PostBuildEvent>copy "$(TargetDir)$(TargetName).dll" "$(SolutionDir)RomCheater\Plugins\$(TargetName).dll"
87     copy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)RomCheater\Plugins\$(TargetName).pdb"</PostBuildEvent>
88 william 177 </PropertyGroup>
89 william 77 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
90     Other similar extension points exist, see Microsoft.Common.targets.
91     <Target Name="BeforeBuild">
92     </Target>
93     <Target Name="AfterBuild">
94     </Target>
95     -->
96     </Project>