From 771a65ff873bf50a21768d876efff6573d951c19 Mon Sep 17 00:00:00 2001 From: Kennan Chan Date: Sun, 1 Mar 2020 23:01:07 +0800 Subject: [PATCH] update version and test --- Revit.Async.NET40/Properties/AssemblyInfo.cs | 4 ++-- Revit.Async/Properties/AssemblyInfo.cs | 4 ++-- TestCommand/TestWindow.cs | 7 ++++++- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Revit.Async.NET40/Properties/AssemblyInfo.cs b/Revit.Async.NET40/Properties/AssemblyInfo.cs index 3a063ce..e13ee6f 100644 --- a/Revit.Async.NET40/Properties/AssemblyInfo.cs +++ b/Revit.Async.NET40/Properties/AssemblyInfo.cs @@ -35,5 +35,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("1.1.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.3.1.0")] +[assembly: AssemblyFileVersion("1.3.1.0")] \ No newline at end of file diff --git a/Revit.Async/Properties/AssemblyInfo.cs b/Revit.Async/Properties/AssemblyInfo.cs index 59911cb..c930e50 100644 --- a/Revit.Async/Properties/AssemblyInfo.cs +++ b/Revit.Async/Properties/AssemblyInfo.cs @@ -35,5 +35,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("1.1.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.3.1.0")] +[assembly: AssemblyFileVersion("1.3.1.0")] \ No newline at end of file diff --git a/TestCommand/TestWindow.cs b/TestCommand/TestWindow.cs index 8a4f0a1..a07790d 100644 --- a/TestCommand/TestWindow.cs +++ b/TestCommand/TestWindow.cs @@ -1,6 +1,10 @@ -using System.Windows; +#region Reference + +using System.Windows; using System.Windows.Controls; +#endregion + namespace TestCommand { internal class TestWindow : Window @@ -25,6 +29,7 @@ private void InitializeComponents() { Content = new TextBlock {Text = "Save Random Family"}, Command = new SaveFamilyCommand(), + CommandParameter = true, VerticalAlignment = VerticalAlignment.Center, HorizontalAlignment = HorizontalAlignment.Center };