diff options
author | Jose <jose@zeroc.com> | 2016-04-22 23:32:42 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-04-22 23:32:42 +0200 |
commit | 2ff28c3159251b7c25b057007a3074df6e80dafc (patch) | |
tree | cbeb130e551c63ec6b33b05d982d0485a3d6fe4a | |
parent | Update csharp builds to use MSbuild (diff) | |
download | ice-2ff28c3159251b7c25b057007a3074df6e80dafc.tar.bz2 ice-2ff28c3159251b7c25b057007a3074df6e80dafc.tar.xz ice-2ff28c3159251b7c25b057007a3074df6e80dafc.zip |
CSharp props typo
-rw-r--r-- | csharp/config/Ice.CSharp.props | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/config/Ice.CSharp.props b/csharp/config/Ice.CSharp.props index 78143894948..df6edfa7741 100644 --- a/csharp/config/Ice.CSharp.props +++ b/csharp/config/Ice.CSharp.props @@ -1,14 +1,14 @@ <?xml version="1.0" encoding="utf-8"?> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- Import Ice version settings from the top level config directory --> - + <!-- Source distributions --> <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> <Ice_Configuration>Debug</Ice_Configuration> </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)' != 'Release'"> + <PropertyGroup Condition="'$(Configuration)' == 'Release'"> <Ice_Configuration>Release</Ice_Configuration> </PropertyGroup> |