Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
ZooY committed Oct 16, 2018
1 parent e87e4af commit a86d0e1
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 31 deletions.
4 changes: 2 additions & 2 deletions Source/Tools/Debug/Debug/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/E-mail/E-mail/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/FetchXML/FetchXML/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/File/File/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/JSON/JSON/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/PDF/PDF/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
1 change: 1 addition & 0 deletions Source/Tools/RabbitMQ/RabbitMQ Tests/Workflow/UnitTest1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace PZone.Tests.RabbitMqTools.Workflow
public class SendTest
{
[TestMethod]
[Ignore]
public void RealSend()
{
var service = new FakeOrganizationService();
Expand Down
6 changes: 3 additions & 3 deletions Source/Tools/String/String Tests/Workflow/JaroDistance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ public JaroDistance()
[TestMethod]
public void Success()
{
var result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "MARTHA", ["String2"] = "MARHTA" });
var result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "MARTHA", ["String2"] = "MARHTA", ["CaseSensitive"] = true, ["AccentSensitive"] = false });
Assert.AreEqual(94, result["Result"]);

result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "DIXON", ["String2"] = "DICKSONX" });
result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "DIXON", ["String2"] = "DICKSONX", ["CaseSensitive"] = true, ["AccentSensitive"] = false });
Assert.AreEqual(77, result["Result"]);

result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "CRATE", ["String2"] = "TRACE" });
result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "CRATE", ["String2"] = "TRACE", ["CaseSensitive"] = true, ["AccentSensitive"] = false });
Assert.AreEqual(73, result["Result"]);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ public JaroWinklerDistance()
[TestMethod]
public void Success()
{
var result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "MARTHA", ["String2"] = "MARHTA" });
var result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "MARTHA", ["String2"] = "MARHTA", ["CaseSensitive"] = true, ["AccentSensitive"] = false });
Assert.AreEqual(96, result["Result"]);

result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "DIXON", ["String2"] = "DICKSONX" });
result = _invoker.Invoke(new Dictionary<string, object> { ["String1"] = "DIXON", ["String2"] = "DICKSONX", ["CaseSensitive"] = true, ["AccentSensitive"] = false });
Assert.AreEqual(81, result["Result"]);
}
}
Expand Down
4 changes: 2 additions & 2 deletions Source/Tools/String/String/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.2.0")]
[assembly: AssemblyFileVersion("8.0.2.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/UI/UI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/UI/UI/pz_/components/Forms/icons.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* @version 1.0.0
* @name Form Icons Library
* @version 8.0.1.0
* @name Form Header Icons Library
* @description Library for creating icons in the form header.
*/

Expand Down
5 changes: 3 additions & 2 deletions Source/Tools/UI/UI/pz_/components/Forms/tabs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* For Microsoft Dynamics 365 v.1612 (8.2.2.112)
/*!
* @version 8.0.1.0
* @name Form Tabs Library
*/


Expand Down
4 changes: 2 additions & 2 deletions Source/Tools/User/User/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/Variable/Variable/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
4 changes: 2 additions & 2 deletions Source/Tools/Web/Web/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]

0 comments on commit a86d0e1

Please sign in to comment.