--- trunk/RomCheater.Logging/RomCheater.Logging.csproj 2012/05/09 08:51:38 23 +++ trunk/RomCheater.Logging/RomCheater.Logging.csproj 2012/05/09 11:39:59 35 @@ -30,6 +30,26 @@ <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> + <DebugSymbols>true</DebugSymbols> + <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <DebugType>full</DebugType> + <PlatformTarget>x86</PlatformTarget> + <ErrorReport>prompt</ErrorReport> + <NoWarn>1607</NoWarn> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> + <OutputPath>bin\x86\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <Optimize>true</Optimize> + <DebugType>pdbonly</DebugType> + <PlatformTarget>x86</PlatformTarget> + <ErrorReport>prompt</ErrorReport> + <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets> + <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules> + <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules> + </PropertyGroup> <ItemGroup> <Reference Include="System" /> <Reference Include="System.Core" /> @@ -43,7 +63,7 @@ </ItemGroup> <ItemGroup> <Compile Include="LoggingConstants.cs" /> - <Compile Include="Logger.cs" /> + <Compile Include="logger.cs" /> <Compile Include="LogWriter.cs"> <SubType>UserControl</SubType> </Compile> @@ -51,12 +71,34 @@ <DependentUpon>LogWriter.cs</DependentUpon> </Compile> <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="Properties\Settings.Designer.cs"> + <AutoGen>True</AutoGen> + <DesignTimeSharedInput>True</DesignTimeSharedInput> + <DependentUpon>Settings.settings</DependentUpon> + </Compile> </ItemGroup> <ItemGroup> <EmbeddedResource Include="LogWriter.resx"> <DependentUpon>LogWriter.cs</DependentUpon> </EmbeddedResource> </ItemGroup> + <ItemGroup> + <None Include="app.config" /> + <None Include="Properties\Settings.settings"> + <Generator>SettingsSingleFileGenerator</Generator> + <LastGenOutput>Settings.Designer.cs</LastGenOutput> + </None> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\RomCheater.UserSettingsSupport\RomCheater.UserSettingsSupport.csproj"> + <Project>{2AE2F089-C470-442E-9AA4-19487B3ADBE6}</Project> + <Name>RomCheater.UserSettingsSupport</Name> + </ProjectReference> + <ProjectReference Include="..\RomCheater.VersionSupport\RomCheater.VersionSupport.csproj"> + <Project>{8EE9208B-A6F5-4EC7-AB81-F4422CEE80A0}</Project> + <Name>RomCheater.VersionSupport</Name> + </ProjectReference> + </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <!-- 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. |