Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater.CheatPlugin/RomCheater.CheatPlugin.csproj 2013/05/28 17:15:40 434 +++ trunk/RomCheater.CheatPlugin/RomCheater.CheatPlugin.csproj 2014/09/16 01:51:41 845 @@ -14,29 +14,56 @@ <FileAlignment>512</FileAlignment> <TargetFrameworkProfile /> </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>bin\Debug\</OutputPath> + <OutputPath>bin\x64\Debug\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> <NoWarn>1607,0436</NoWarn> + <DebugType>full</DebugType> + <PlatformTarget>x64</PlatformTarget> + <ErrorReport>prompt</ErrorReport> + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> + <OutputPath>bin\x64\Release\</OutputPath> + <DefineConstants>TRACE;RELEASE</DefineConstants> + <Optimize>true</Optimize> <DebugType>pdbonly</DebugType> + <PlatformTarget>x64</PlatformTarget> + <ErrorReport>prompt</ErrorReport> + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> + <NoWarn>1607,0436</NoWarn> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> + <DebugSymbols>true</DebugSymbols> + <OutputPath>bin\x86\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <NoWarn>1607,0436</NoWarn> + <DebugType>full</DebugType> + <PlatformTarget>x86</PlatformTarget> + <ErrorReport>prompt</ErrorReport> + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> + <OutputPath>bin\x86\Release\</OutputPath> + <DefineConstants>TRACE;RELEASE</DefineConstants> <Optimize>true</Optimize> - <OutputPath>bin\Release\</OutputPath> - <DefineConstants>TRACE</DefineConstants> + <DebugType>pdbonly</DebugType> + <PlatformTarget>x86</PlatformTarget> <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> + <NoWarn>1607,0436</NoWarn> </PropertyGroup> <ItemGroup> + <Reference Include="Enterprise.Logging"> + <HintPath>..\deps\Enterprise.Logging\Enterprise.Logging.dll</HintPath> + </Reference> <Reference Include="Microsoft.CSharp" /> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="System.Drawing" /> + <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> <Reference Include="System.Xml.Linq" /> </ItemGroup> @@ -44,9 +71,20 @@ <Compile Include="..\VersioningSupport\SharedAssemblyInfo.cs"> <Link>Properties\SharedAssemblyInfo.cs</Link> </Compile> + <Compile Include="CheatCodeDockContent.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="CheatCodeDockContent.Designer.cs"> + <DependentUpon>CheatCodeDockContent.cs</DependentUpon> + </Compile> + <Compile Include="CheatCodePlugin.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> + <ProjectReference Include="..\deps\WeifenLuo.WinFormsUI.Docking\WinFormsUI\WinFormsUI.csproj"> + <Project>{C75532C4-765B-418E-B09B-46D36B2ABDB1}</Project> + <Name>WinFormsUI</Name> + </ProjectReference> <ProjectReference Include="..\RomCheater.Core\RomCheater.Core.csproj"> <Project>{A229722A-A477-4954-8BCB-9E3BD51B7D0B}</Project> <Name>RomCheater.Core</Name> @@ -63,13 +101,19 @@ <ItemGroup> <None Include="Properties\AssemblyInfo.cs.tmpl" /> </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="CheatCodeDockContent.resx"> + <DependentUpon>CheatCodeDockContent.cs</DependentUpon> + </EmbeddedResource> + </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <PropertyGroup> <PreBuildEvent>"$(SolutionDir)deps\TortoiseSVN\SubWCRev.exe" "$(SolutionDir)." "$(ProjectDir)Properties\AssemblyInfo.cs.tmpl" "$(ProjectDir)Properties\AssemblyInfo.cs"</PreBuildEvent> </PropertyGroup> <PropertyGroup> - <PostBuildEvent>copy "$(TargetDir)$(TargetName).dll" "$(SolutionDir)RomCheater\Plugins\$(TargetName).dll" -copy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)RomCheater\Plugins\$(TargetName).pdb"</PostBuildEvent> + <PostBuildEvent>mkdir "$(SolutionDir)RomCheater\Plugins\$(PlatformName)\$(ConfigurationName)\" +copy "$(TargetDir)$(TargetName).dll" "$(SolutionDir)RomCheater\Plugins\$(PlatformName)\$(ConfigurationName)\$(TargetName).dll" +copy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)RomCheater\Plugins\$(PlatformName)\$(ConfigurationName)\$(TargetName).pdb"</PostBuildEvent> </PropertyGroup> <!-- 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.
ViewVC Help | |
Powered by ViewVC 1.1.22 |