.NET: Fix EntityFramework project settings
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/dd20d943 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/dd20d943 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/dd20d943 Branch: refs/heads/ignite-2693 Commit: dd20d943a2d8052e29f747f3bfbc6df0f1d535dd Parents: 3aae5cb Author: Pavel Tupitsyn <[email protected]> Authored: Mon Nov 14 16:53:58 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Mon Nov 14 16:53:58 2016 +0300 ---------------------------------------------------------------------- .../Apache.Ignite.EntityFramework.csproj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/dd20d943/modules/platforms/dotnet/Apache.Ignite.EntityFramework/Apache.Ignite.EntityFramework.csproj ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.EntityFramework/Apache.Ignite.EntityFramework.csproj b/modules/platforms/dotnet/Apache.Ignite.EntityFramework/Apache.Ignite.EntityFramework.csproj index 8b3c651..7082182 100644 --- a/modules/platforms/dotnet/Apache.Ignite.EntityFramework/Apache.Ignite.EntityFramework.csproj +++ b/modules/platforms/dotnet/Apache.Ignite.EntityFramework/Apache.Ignite.EntityFramework.csproj @@ -23,14 +23,16 @@ <RunCodeAnalysis>true</RunCodeAnalysis> <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> + <DocumentationFile>bin\Debug\Apache.Ignite.EntityFramework.XML</DocumentationFile> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> <OutputPath>bin\Release\</OutputPath> - <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> + <DebugType>none</DebugType> + <DocumentationFile>bin\Release\Apache.Ignite.EntityFramework.XML</DocumentationFile> </PropertyGroup> <PropertyGroup> <SignAssembly>true</SignAssembly>
