-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert Namespaces designer to WPF/MVVM Create C# custom action to detect VS2019 and not require WiX 3.14 to build IsWiX installer
- Loading branch information
Showing
20 changed files
with
490 additions
and
1,132 deletions.
There are no files selected for viewing
686 changes: 0 additions & 686 deletions
686
Application/Designers/NamespacesDesigner/DataSetNamespaces.Designer.cs
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
Application/Designers/NamespacesDesigner/DataSetNamespaces.xsc
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
Application/Designers/NamespacesDesigner/DataSetNamespaces.xsd
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
Application/Designers/NamespacesDesigner/DataSetNamespaces.xss
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
Application/Designers/NamespacesDesigner/Models/NamespaceModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using FireworksFramework.Types; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace NamespacesDesigner.Models | ||
{ | ||
public class NamespaceModel : ObservableObject | ||
{ | ||
string _prefix; | ||
string _uri; | ||
bool _selected; | ||
public bool Selected { get { return _selected; } set { _selected = value; RaisePropertyChangedEvent("Selected"); } } | ||
public string Prefix { get { return _prefix; } set { _prefix = value; RaisePropertyChangedEvent("Prefix"); } } | ||
public string Uri { get { return _uri; } set { _uri = value; RaisePropertyChangedEvent("Uri"); } } | ||
|
||
} | ||
} |
126 changes: 0 additions & 126 deletions
126
Application/Designers/NamespacesDesigner/Namespaces.Designer.cs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.