├── GroupClashes ├── Images │ ├── GroupClashesIcon_Large.ico │ └── GroupClashesIcon_Small.ico ├── en-US │ ├── GroupClashes.name │ └── GroupClashes.xaml ├── GroupClashesPane.cs ├── Properties │ └── AssemblyInfo.cs ├── GroupClashesHostingControl.Designer.cs ├── GroupClashesHostingControl.cs ├── PostBuild.ps1 ├── GroupClashes.cs ├── PackageContents.xml ├── GroupClashesHostingControl.resx ├── GroupClashesInterface.xaml ├── GroupClashesInterface.xaml.cs ├── GroupClashes.csproj └── GroupingFunctions.cs ├── .gitattributes ├── LICENSE.md ├── README.md ├── GroupClashes.sln └── .gitignore /GroupClashes/Images/GroupClashesIcon_Large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/GroupClashes/HEAD/GroupClashes/Images/GroupClashesIcon_Large.ico -------------------------------------------------------------------------------- /GroupClashes/Images/GroupClashesIcon_Small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/GroupClashes/HEAD/GroupClashes/Images/GroupClashesIcon_Small.ico -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /GroupClashes/en-US/GroupClashes.name: -------------------------------------------------------------------------------- 1 | # Local names for ribbon tab, panel, and controls 2 | $utf8 3 | 4 | DisplayName= 5 | NNAW Ribbon Local Name 6 | 7 | ID_GroupClashesTab.DisplayName= 8 | Group Clashes 9 | 10 | ID_GroupClashesButton.DisplayName= 11 | Group Clashes 12 | 13 | ID_GroupClashesButton.ToolTip= 14 | Groups clashes according to the items involved 15 | 16 | ID_GroupClashesButton.ExtendedToolTip= 17 | Select a clash test, a grouping mode and click on Group 18 | -------------------------------------------------------------------------------- /GroupClashes/GroupClashesPane.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows.Forms; 7 | using Autodesk.Navisworks.Api.Plugins; 8 | 9 | namespace GroupClashes 10 | { 11 | [Plugin("GroupClashes.GroupClashesPane", "BM42",DisplayName = "Group Clashes",ToolTip = "Group clashes")] 12 | [DockPanePlugin(300, 380)] 13 | class GroupClashesPane : DockPanePlugin 14 | { 15 | public override Control CreateControlPane() 16 | { 17 | //create the control that will be used to display in the pane 18 | GroupClashesHostingControl control = new GroupClashesHostingControl(); 19 | 20 | control.Dock = DockStyle.Fill; 21 | 22 | //create the control 23 | control.CreateControl(); 24 | 25 | return control; 26 | } 27 | 28 | public override void DestroyControlPane(Control pane) 29 | { 30 | pane.Dispose(); 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) [2016] [Simon Moreau] 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /GroupClashes/en-US/GroupClashes.xaml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /GroupClashes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("GroupClashes")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("GroupClashes")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("3876fa5d-2b66-4859-a4cd-12f9020b4c29")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /GroupClashes/GroupClashesHostingControl.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GroupClashes 2 | { 3 | partial class GroupClashesHostingControl 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Component Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // GroupClashesHostingControl 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); 38 | this.Name = "GroupClashesHostingControl"; 39 | this.Size = new System.Drawing.Size(246, 427); 40 | this.Load += new System.EventHandler(this.Form1_Load); 41 | this.ResumeLayout(false); 42 | 43 | } 44 | 45 | #endregion 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Group Clashes 2 | 3 | A Navisworks Manage plugin for rule-based clash results grouping. 4 | 5 | ## Getting Started 6 | 7 | This plugin will help you to group clash result in a given Navisworks clash test. For now, you can group clashes by: 8 | * Nearest level 9 | * Nearest grid intersection 10 | * Element belonging to a model 11 | * Status, approval or assignment 12 | 13 | Open the Group Clashes window by clicking on the Group Clashes button 14 | Select a clash test. The two selections involved in the clash test are displayed below. 15 | Select one or two clash rule. Since Navisworks Manage does not support subgroup for clashes, the group name will include the result of the two rules. 16 | Click on Group. 17 | For a full description of each grouping rule, visit [bim42.com](http://bim42.com/2016/10/group-clashes/). 18 | 19 | ### Prerequisities 20 | 21 | This application is devellop with Visual Studio 2015. 22 | To run this plugin, you will need Navisworks Manage 2015, 2016 or 2017. Just compile the solution and paste the resulting dll in the Navisworks Manage Plugin folder. 23 | Before modifying anything, I advise you to check the Navisworks Manage SDK on the [Autodesk Developer Network](http://usa.autodesk.com/adsk/servlet/index?id=15024694&siteID=123112). 24 | 25 | ## Built With 26 | 27 | * [Visual Studio 2015](https://www.visualstudio.com/vs/community/) - My tool of choice 28 | 29 | ## Contributing 30 | 31 | Please feel free to submit pull request in any manner you want. 32 | 33 | ## Authors 34 | 35 | * **Simon Moreau** - *Initial work* - [BIM 42](https://bim42.com) 36 | 37 | ## License 38 | 39 | This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details 40 | 41 | ## Acknowledgments 42 | 43 | * Thanks to the team behind the Navisworks Manage SDK for providing me the idea with the tools to implementing it. 44 | 45 | -------------------------------------------------------------------------------- /GroupClashes/GroupClashesHostingControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Drawing; 5 | using System.Data; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | using System.Windows; 11 | using System.Windows.Forms.Integration; 12 | using System.Windows.Media; 13 | using System.Windows.Interop; 14 | 15 | namespace GroupClashes 16 | { 17 | 18 | 19 | public partial class GroupClashesHostingControl : UserControl 20 | { 21 | private ElementHost _ctrlHost; 22 | private GroupClashesInterface _wpfAddressCtrl; 23 | private Panel _hostPanel; 24 | 25 | public GroupClashesHostingControl() 26 | { 27 | InitializeComponent(); 28 | } 29 | 30 | private void Form1_Load(object sender, EventArgs e) 31 | { 32 | _ctrlHost = new ElementHost(); 33 | this.Controls.Add(_ctrlHost); 34 | _ctrlHost.Dock = DockStyle.Fill; 35 | 36 | _wpfAddressCtrl = new GroupClashesInterface(); 37 | _wpfAddressCtrl.InitializeComponent(); 38 | _ctrlHost.Child = _wpfAddressCtrl; 39 | _ctrlHost.AutoSize = true; 40 | } 41 | 42 | protected override void OnVisibleChanged(EventArgs e) 43 | { 44 | base.OnVisibleChanged(e); 45 | 46 | _hostPanel = (Panel)Parent; 47 | _hostPanel.SizeChanged += (hostPanel_SizeChanged); 48 | ResizeControl(); 49 | } 50 | 51 | private void hostPanel_SizeChanged(object sender, EventArgs e) 52 | { 53 | ResizeControl(); 54 | } 55 | 56 | public void ResizeControl() 57 | { 58 | Width = _hostPanel.Width; 59 | Height = _hostPanel.Height; 60 | } 61 | 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /GroupClashes/PostBuild.ps1: -------------------------------------------------------------------------------- 1 | param ($Configuration, $TargetName, $ProjectDir, $TargetPath, $TargetDir) 2 | write-host $Configuration 3 | write-host $TargetName 4 | write-host $ProjectDir 5 | write-host $TargetPath 6 | write-host $TargetDir 7 | 8 | # sign the dll 9 | $thumbPrint = "e729567d4e9be8ffca04179e3375b7669bccf272" 10 | $cert=Get-ChildItem -Path Cert:\CurrentUser\My -CodeSigningCert | Where { $_.Thumbprint -eq $thumbPrint} 11 | 12 | Set-AuthenticodeSignature -FilePath $TargetPath -Certificate $cert -IncludeChain All -TimestampServer "http://timestamp.comodoca.com/authenticode" 13 | 14 | function CopyToFolder($revitVersion, $addinFolder) { 15 | 16 | if (Test-Path $addinFolder) { 17 | try { 18 | # Remove previous versions 19 | Get-ChildItem -Path $addinFolder | Remove-Item -Recurse 20 | 21 | # Copy the addin file 22 | Write-Host "copy all files" + ($TargetDir) + $addinFolder 23 | xcopy ($TargetDir) ($addinFolder) /s /e /y 24 | } 25 | catch { 26 | Write-Host "An error occurred:" 27 | Write-Host $_ 28 | } 29 | } 30 | } 31 | 32 | 33 | $revitVersion = $Configuration.replace('Debug','').replace('Release','') 34 | 35 | # Copy to Addin folder for debug 36 | $addinMainFolder = ($env:APPDATA + "\Autodesk\ApplicationPlugins\GroupClashes.BM42.bundle\") 37 | xcopy /Y ($ProjectDir + "PackageContents.xml") $addinMainFolder 38 | $addinFolder = ($addinMainFolder + "Contents\" + $revitVersion + "\") 39 | Write-Host "addin folder" + $addinFolder 40 | CopyToFolder $revitVersion $addinFolder 41 | 42 | 43 | # Copy to release folder for building the package 44 | $ReleasePath="G:\My Drive\05 - Travail\Revit Dev\GroupClashes\Releases\Current Release\GroupClashes.BM42.bundle\" 45 | xcopy /Y ($ProjectDir + "PackageContents.xml") $ReleasePath 46 | $releaseFolder = ($ReleasePath + "Contents\" + $revitVersion + "\") 47 | Write-Host "release folder" + $releaseFolder 48 | CopyToFolder $revitVersion $releaseFolder 49 | 50 | 51 | ## Zip the package 52 | 53 | $BundleFolder = (get-item $ReleasePath ).parent.FullName 54 | 55 | $ReleaseZip = ($BundleFolder + "\" + $TargetName + ".zip") 56 | if (Test-Path $ReleaseZip) { Remove-Item $ReleaseZip } 57 | 58 | if ( Test-Path -Path $ReleasePath ) { 59 | 7z a -tzip $ReleaseZip ($BundleFolder + "\GroupClashes.BM42.bundle\") 60 | } -------------------------------------------------------------------------------- /GroupClashes/GroupClashes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Diagnostics; 4 | using System.IO; 5 | using System.Linq; 6 | using System.Reflection; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using Autodesk.Navisworks.Api.Plugins; 10 | 11 | namespace GroupClashes 12 | { 13 | [Plugin("GroupClashes", "BM42", DisplayName = "Group Clashes")] 14 | [Strings("GroupClashes.name")] 15 | [RibbonLayout("GroupClashes.xaml")] 16 | [RibbonTab("ID_GroupClashesTab", 17 | DisplayName = "Group Clashes")] 18 | [Command("ID_GroupClashesButton", 19 | Icon = "GroupClashesIcon_Small.ico", LargeIcon = "GroupClashesIcon_Large.ico", 20 | DisplayName = "Group Clashes")] 21 | 22 | class RibbonHandler : CommandHandlerPlugin 23 | { 24 | private bool m_toShowTab; 25 | private bool m_toEnableButton; 26 | 27 | public RibbonHandler() 28 | { 29 | m_toShowTab = false; // to show tab or not 30 | m_toEnableButton = false; // to enable button or not 31 | } 32 | 33 | public override int ExecuteCommand(string commandId, params string[] parameters) 34 | { 35 | if (Autodesk.Navisworks.Api.Application.IsAutomated) 36 | { 37 | throw new InvalidOperationException("Invalid when running using Automation"); 38 | } 39 | 40 | //Find the plugin 41 | PluginRecord pr = Autodesk.Navisworks.Api.Application.Plugins.FindPlugin("GroupClashes.GroupClashesPane.BM42"); 42 | 43 | if (pr != null && pr is DockPanePluginRecord && pr.IsEnabled) 44 | { 45 | //check if it needs loading 46 | if (pr.LoadedPlugin == null) 47 | { 48 | pr.LoadPlugin(); 49 | } 50 | 51 | DockPanePlugin dpp = pr.LoadedPlugin as DockPanePlugin; 52 | if (dpp != null) 53 | { 54 | //switch the Visible flag 55 | dpp.Visible = !dpp.Visible; 56 | } 57 | } 58 | 59 | //groupClashesInterface.ShowDialog(); 60 | return 0; 61 | } 62 | 63 | public override CommandState CanExecuteCommand(String commandId) 64 | { 65 | CommandState state = new CommandState(); 66 | state.IsVisible = true; 67 | state.IsEnabled = true; 68 | state.IsChecked = true; 69 | 70 | return state; 71 | } 72 | 73 | public override bool CanExecuteRibbonTab(string name) 74 | { 75 | return true; 76 | } 77 | 78 | public override bool TryShowCommandHelp(string name) 79 | { 80 | //FileInfo dllFileInfo = new FileInfo(Assembly.GetExecutingAssembly().Location); 81 | //string pathToHtmlFile = Path.Combine(dllFileInfo.Directory.FullName, @"Help\Help.html"); 82 | string helpUrl = @"https://witty-river-01a861010.2.azurestaticapps.net/GroupClashes/GroupClashes.html"; 83 | System.Diagnostics.Process.Start(helpUrl); 84 | return true; 85 | } 86 | 87 | 88 | } 89 | } 90 | 91 | 92 | -------------------------------------------------------------------------------- /GroupClashes.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GroupClashes", "GroupClashes\GroupClashes.csproj", "{3876FA5D-2B66-4859-A4CD-12F9020B4C29}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | 2019Debug|Any CPU = 2019Debug|Any CPU 11 | 2019Release|Any CPU = 2019Release|Any CPU 12 | 2020Debug|Any CPU = 2020Debug|Any CPU 13 | 2020Release|Any CPU = 2020Release|Any CPU 14 | 2021Debug|Any CPU = 2021Debug|Any CPU 15 | 2021Release|Any CPU = 2021Release|Any CPU 16 | 2022Debug|Any CPU = 2022Debug|Any CPU 17 | 2022Release|Any CPU = 2022Release|Any CPU 18 | 2023Debug|Any CPU = 2023Debug|Any CPU 19 | 2023Release|Any CPU = 2023Release|Any CPU 20 | 2024Debug|Any CPU = 2024Debug|Any CPU 21 | 2024Release|Any CPU = 2024Release|Any CPU 22 | EndGlobalSection 23 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 24 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2019Debug|Any CPU.ActiveCfg = 2019Debug|Any CPU 25 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2019Debug|Any CPU.Build.0 = 2019Debug|Any CPU 26 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2019Release|Any CPU.ActiveCfg = 2019Release|Any CPU 27 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2019Release|Any CPU.Build.0 = 2019Release|Any CPU 28 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2020Debug|Any CPU.ActiveCfg = 2020Debug|Any CPU 29 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2020Debug|Any CPU.Build.0 = 2020Debug|Any CPU 30 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2020Release|Any CPU.ActiveCfg = 2020Release|Any CPU 31 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2020Release|Any CPU.Build.0 = 2020Release|Any CPU 32 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2021Debug|Any CPU.ActiveCfg = 2021Debug|Any CPU 33 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2021Debug|Any CPU.Build.0 = 2021Debug|Any CPU 34 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2021Release|Any CPU.ActiveCfg = 2021Release|Any CPU 35 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2021Release|Any CPU.Build.0 = 2021Release|Any CPU 36 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2022Debug|Any CPU.ActiveCfg = 2022Debug|Any CPU 37 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2022Debug|Any CPU.Build.0 = 2022Debug|Any CPU 38 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2022Release|Any CPU.ActiveCfg = 2022Release|Any CPU 39 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2022Release|Any CPU.Build.0 = 2022Release|Any CPU 40 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2023Debug|Any CPU.ActiveCfg = 2023Debug|Any CPU 41 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2023Debug|Any CPU.Build.0 = 2023Debug|Any CPU 42 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2023Release|Any CPU.ActiveCfg = 2023Release|Any CPU 43 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2023Release|Any CPU.Build.0 = 2023Release|Any CPU 44 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2024Debug|Any CPU.ActiveCfg = 2024Debug|Any CPU 45 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2024Debug|Any CPU.Build.0 = 2024Debug|Any CPU 46 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2024Release|Any CPU.ActiveCfg = 2024Release|Any CPU 47 | {3876FA5D-2B66-4859-A4CD-12F9020B4C29}.2024Release|Any CPU.Build.0 = 2024Release|Any CPU 48 | EndGlobalSection 49 | GlobalSection(SolutionProperties) = preSolution 50 | HideSolutionNode = FALSE 51 | EndGlobalSection 52 | GlobalSection(ExtensibilityGlobals) = postSolution 53 | SolutionGuid = {FE360883-270B-4C5D-9065-60489BF12513} 54 | EndGlobalSection 55 | EndGlobal 56 | -------------------------------------------------------------------------------- /GroupClashes/PackageContents.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /GroupClashes/GroupClashesHostingControl.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | /TestFiles 10 | /Icons 11 | 12 | # User-specific files (MonoDevelop/Xamarin Studio) 13 | *.userprefs 14 | 15 | # Build results 16 | [Dd]ebug/ 17 | [Dd]ebugPublic/ 18 | [Rr]elease/ 19 | [Rr]eleases/ 20 | x64/ 21 | x86/ 22 | bld/ 23 | [Bb]in/ 24 | [Oo]bj/ 25 | [Ll]og/ 26 | 27 | # Visual Studio 2015 cache/options directory 28 | .vs/ 29 | # Uncomment if you have tasks that create the project's static files in wwwroot 30 | #wwwroot/ 31 | 32 | # MSTest test Results 33 | [Tt]est[Rr]esult*/ 34 | [Bb]uild[Ll]og.* 35 | 36 | # NUNIT 37 | *.VisualState.xml 38 | TestResult.xml 39 | 40 | # Build Results of an ATL Project 41 | [Dd]ebugPS/ 42 | [Rr]eleasePS/ 43 | dlldata.c 44 | 45 | # DNX 46 | project.lock.json 47 | artifacts/ 48 | 49 | *_i.c 50 | *_p.c 51 | *_i.h 52 | *.ilk 53 | *.meta 54 | *.obj 55 | *.pch 56 | *.pdb 57 | *.pgc 58 | *.pgd 59 | *.rsp 60 | *.sbr 61 | *.tlb 62 | *.tli 63 | *.tlh 64 | *.tmp 65 | *.tmp_proj 66 | *.log 67 | *.vspscc 68 | *.vssscc 69 | .builds 70 | *.pidb 71 | *.svclog 72 | *.scc 73 | 74 | # Chutzpah Test files 75 | _Chutzpah* 76 | 77 | # Visual C++ cache files 78 | ipch/ 79 | *.aps 80 | *.ncb 81 | *.opendb 82 | *.opensdf 83 | *.sdf 84 | *.cachefile 85 | *.VC.db 86 | *.VC.VC.opendb 87 | 88 | # Visual Studio profiler 89 | *.psess 90 | *.vsp 91 | *.vspx 92 | *.sap 93 | 94 | # TFS 2012 Local Workspace 95 | $tf/ 96 | 97 | # Guidance Automation Toolkit 98 | *.gpState 99 | 100 | # ReSharper is a .NET coding add-in 101 | _ReSharper*/ 102 | *.[Rr]e[Ss]harper 103 | *.DotSettings.user 104 | 105 | # JustCode is a .NET coding add-in 106 | .JustCode 107 | 108 | # TeamCity is a build add-in 109 | _TeamCity* 110 | 111 | # DotCover is a Code Coverage Tool 112 | *.dotCover 113 | 114 | # NCrunch 115 | _NCrunch_* 116 | .*crunch*.local.xml 117 | nCrunchTemp_* 118 | 119 | # MightyMoose 120 | *.mm.* 121 | AutoTest.Net/ 122 | 123 | # Web workbench (sass) 124 | .sass-cache/ 125 | 126 | # Installshield output folder 127 | [Ee]xpress/ 128 | 129 | # DocProject is a documentation generator add-in 130 | DocProject/buildhelp/ 131 | DocProject/Help/*.HxT 132 | DocProject/Help/*.HxC 133 | DocProject/Help/*.hhc 134 | DocProject/Help/*.hhk 135 | DocProject/Help/*.hhp 136 | DocProject/Help/Html2 137 | DocProject/Help/html 138 | 139 | # Click-Once directory 140 | publish/ 141 | 142 | # Publish Web Output 143 | *.[Pp]ublish.xml 144 | *.azurePubxml 145 | # TODO: Comment the next line if you want to checkin your web deploy settings 146 | # but database connection strings (with potential passwords) will be unencrypted 147 | *.pubxml 148 | *.publishproj 149 | 150 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 151 | # checkin your Azure Web App publish settings, but sensitive information contained 152 | # in these scripts will be unencrypted 153 | PublishScripts/ 154 | 155 | # NuGet Packages 156 | *.nupkg 157 | # The packages folder can be ignored because of Package Restore 158 | **/packages/* 159 | # except build/, which is used as an MSBuild target. 160 | !**/packages/build/ 161 | # Uncomment if necessary however generally it will be regenerated when needed 162 | #!**/packages/repositories.config 163 | # NuGet v3's project.json files produces more ignoreable files 164 | *.nuget.props 165 | *.nuget.targets 166 | 167 | # Microsoft Azure Build Output 168 | csx/ 169 | *.build.csdef 170 | 171 | # Microsoft Azure Emulator 172 | ecf/ 173 | rcf/ 174 | 175 | # Windows Store app package directories and files 176 | AppPackages/ 177 | BundleArtifacts/ 178 | Package.StoreAssociation.xml 179 | _pkginfo.txt 180 | 181 | # Visual Studio cache files 182 | # files ending in .cache can be ignored 183 | *.[Cc]ache 184 | # but keep track of directories ending in .cache 185 | !*.[Cc]ache/ 186 | 187 | # Others 188 | ClientBin/ 189 | ~$* 190 | *~ 191 | *.dbmdl 192 | *.dbproj.schemaview 193 | *.pfx 194 | *.publishsettings 195 | node_modules/ 196 | orleans.codegen.cs 197 | 198 | # Since there are multiple workflows, uncomment next line to ignore bower_components 199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 200 | #bower_components/ 201 | 202 | # RIA/Silverlight projects 203 | Generated_Code/ 204 | 205 | # Backup & report files from converting an old project file 206 | # to a newer Visual Studio version. Backup files are not needed, 207 | # because we have git ;-) 208 | _UpgradeReport_Files/ 209 | Backup*/ 210 | UpgradeLog*.XML 211 | UpgradeLog*.htm 212 | 213 | # SQL Server files 214 | *.mdf 215 | *.ldf 216 | 217 | # Business Intelligence projects 218 | *.rdl.data 219 | *.bim.layout 220 | *.bim_*.settings 221 | 222 | # Microsoft Fakes 223 | FakesAssemblies/ 224 | 225 | # GhostDoc plugin setting file 226 | *.GhostDoc.xml 227 | 228 | # Node.js Tools for Visual Studio 229 | .ntvs_analysis.dat 230 | 231 | # Visual Studio 6 build log 232 | *.plg 233 | 234 | # Visual Studio 6 workspace options file 235 | *.opt 236 | 237 | # Visual Studio LightSwitch build output 238 | **/*.HTMLClient/GeneratedArtifacts 239 | **/*.DesktopClient/GeneratedArtifacts 240 | **/*.DesktopClient/ModelManifest.xml 241 | **/*.Server/GeneratedArtifacts 242 | **/*.Server/ModelManifest.xml 243 | _Pvt_Extensions 244 | 245 | # Paket dependency manager 246 | .paket/paket.exe 247 | paket-files/ 248 | 249 | # FAKE - F# Make 250 | .fake/ 251 | 252 | # JetBrains Rider 253 | .idea/ 254 | *.sln.iml 255 | 256 | # ========================= 257 | # Operating System Files 258 | # ========================= 259 | 260 | # OSX 261 | # ========================= 262 | 263 | .DS_Store 264 | .AppleDouble 265 | .LSOverride 266 | 267 | # Thumbnails 268 | ._* 269 | 270 | # Files that might appear in the root of a volume 271 | .DocumentRevisions-V100 272 | .fseventsd 273 | .Spotlight-V100 274 | .TemporaryItems 275 | .Trashes 276 | .VolumeIcon.icns 277 | 278 | # Directories potentially created on remote AFP share 279 | .AppleDB 280 | .AppleDesktop 281 | Network Trash Folder 282 | Temporary Items 283 | .apdisk 284 | 285 | # Windows 286 | # ========================= 287 | 288 | # Windows image file caches 289 | Thumbs.db 290 | ehthumbs.db 291 | 292 | # Folder config file 293 | Desktop.ini 294 | 295 | # Recycle Bin used on file shares 296 | $RECYCLE.BIN/ 297 | 298 | # Windows Installer files 299 | *.cab 300 | *.msi 301 | *.msm 302 | *.msp 303 | 304 | # Windows shortcuts 305 | *.lnk 306 | -------------------------------------------------------------------------------- /GroupClashes/GroupClashesInterface.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 17 | 23 | 31 | 39 | 46 | 52 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 80 | 81 | 82 | 84 | 85 | 86 | 87 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 119 | 120 | 121 | 122 | 124 | 125 | 126 |