Skip to content

Commit 236e0f7

Browse files
committed
Resolve issue with Visual Studio 2013
Applied code change due to compiler error that occurs in VS`2013 but not VS 2015.
1 parent f69a52b commit 236e0f7

6 files changed

Lines changed: 12 additions & 8 deletions

File tree

Code/Sif3Framework/Sif.Framework.EnvironmentProvider/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
//
3232
// You can specify all the values or you can default the Revision and Build Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("1.1.0.0")]
35-
[assembly: AssemblyFileVersion("1.1.0.0")]
34+
[assembly: AssemblyVersion("1.1.1.0")]
35+
[assembly: AssemblyFileVersion("1.1.1.0")]

Code/Sif3Framework/Sif.Framework.Tests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.1.0.0")]
36-
[assembly: AssemblyFileVersion("1.1.0.0")]
35+
[assembly: AssemblyVersion("1.1.1.0")]
36+
[assembly: AssemblyFileVersion("1.1.1.0")]

Code/Sif3Framework/Sif.Framework/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.1.0.0")]
36-
[assembly: AssemblyFileVersion("1.1.0.0")]
35+
[assembly: AssemblyVersion("1.1.1.0")]
36+
[assembly: AssemblyFileVersion("1.1.1.0")]
3737

3838
// Configure log4net using the .config file
3939
[assembly: log4net.Config.XmlConfigurator(Watch = true)]

Code/Sif3Framework/Sif.Framework/WebApi/ModelBinders/MatrixParameterModelBinder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ public bool BindModel(HttpActionContext actionContext, ModelBindingContext bindi
116116
// Expand in case that a catch-all constraint will deliver a segment with "/" in it.
117117
List<string> paramSegments = new List<string>();
118118

119-
foreach (string segment in values)
119+
foreach (string value in values)
120120
{
121-
paramSegments.AddRange(segment.Split(new[] { "/" }, StringSplitOptions.RemoveEmptyEntries));
121+
paramSegments.AddRange(value.Split(new[] { "/" }, StringSplitOptions.RemoveEmptyEntries));
122122
}
123123

124124
List<string> collectedAttributeValues = new List<string>();

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,3 +261,7 @@ To get started using this framework, read the *Sif3Framework .NET Developer's Gu
261261
- Updated US demo projects to use SIF US 3.3 model objects.
262262
- Added a Service Path exercise to the AU and US training exercises.
263263

264+
**Feb 04, 2016 - 1.1.2 Resolve issue with Visual Studio 2013**
265+
266+
- Applied code change due to compiler error that occurs in VS`2013 but not VS 2015.
267+
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)