Skip to content

Commit

Permalink
I forgot to carry over some constants to the new csproj format that w…
Browse files Browse the repository at this point in the history
…ere declared in the old format. Was missing TRACE constant and this caused no logging to occur when tracing was enabled as noted by @MeliDreamingSand on GitHub issue #54.
  • Loading branch information
phantomtypist committed Aug 10, 2017
1 parent 2d933ac commit 54ed324
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions DotNetCasClient/DotNetCasClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<DefineConstants>TRACE;DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net35' OR '$(TargetFramework)'=='net20'">
Expand Down
2 changes: 1 addition & 1 deletion DotNetCasClient/Properties/AutoGeneratedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
[assembly: AssemblyProduct("Apereo .NET CAS Client")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyInformationalVersion("1.1.0-unstable.58+Branch.develop.Sha.6b6d0705708a9763edca73dd2ea3dc639da3dd2a")]
[assembly: AssemblyInformationalVersion("1.1.0-beta.3+Branch.release/1.1.0.Sha.2d933acd717368290d2a33effbe13208550d9494")]
[assembly: AssemblyCopyright("Copyright (c) 2007-2017 Apereo. All rights reserved.")]

0 comments on commit 54ed324

Please sign in to comment.