-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert to CPS #13
Convert to CPS #13
Conversation
RussKie
commented
Sep 16, 2019
- Retarget to .NET Standard 2.0
- Fix compile issues
- Fix warnings
* Retarget to .NET Standard 2.0 * Fix compile issues * Fix warnings
@pmiossec I think you've been dealing with the GH plugin. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No important comment. Leaner definition, the plugin works for me.
What about the latest changes in master?
Got an exception when opening after building, not sure if it is related. Not occurring after a rebuild.
System.NullReferenceException: Object reference not set to an instance of an object.
at GitHub3.GitHub3Plugin.GetHostedRemotesForModule() in F:\dev\gc\gitextensions_4\Plugins\GitHub3\GitHub3Plugin.cs:line 190
at GitHub3.GitHub3Plugin.GitModuleIsRelevantToMe() in F:\dev\gc\gitextensions_4\Plugins\GitHub3\GitHub3Plugin.cs:line 182
at GitUI.PluginRegistry.<>c.<TryGetGitHosterForModule>b__11_0(IRepositoryHostPlugin gitHoster) in F:\dev\gc\gitextensions_4\GitUI\Plugin\PluginRegistry.cs:line 63
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
at GitUI.PluginRegistry.TryGetGitHosterForModule(GitModule module) in F:\dev\gc\gitextensions_4\GitUI\Plugin\PluginRegistry.cs:line 63
at GitUI.CommandsDialogs.FormBrowse.TryGetRepositoryHost(IRepositoryHostPlugin& repoHost) in F:\dev\gc\gitextensions_4\GitUI\CommandsDialogs\FormBrowse.cs:line 2138
at GitUI.CommandsDialogs.FormBrowse._viewPullRequestsToolStripMenuItem_Click(Object sender, EventArgs e) in F:\dev\gc\gitextensions_4\GitUI\CommandsDialogs\FormBrowse.cs:line 2104
at System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e)
at System.Windows.Forms.ToolStripMenuItem.OnClick(EventArgs e)
at System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e)
at System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e)
at System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea)
at System.Windows.Forms.ToolStripDropDown.OnMouseUp(MouseEventArgs mea)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ToolStrip.WndProc(Message& m)
at System.Windows.Forms.ToolStripDropDown.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
Thank you for testing. |
@@ -1,3 +1,13 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<Project> | |||
|
|||
<PropertyGroup> | |||
<Copyright>Copyright © 2012 Marcus Bauer <mabako@gmail.com> // Copyright © 2019 Git Extensions</Copyright> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a particular reason to put it here instead in the only csproj the repository have?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the target state we'll put all the common info into a directory.build.props
However right now I don't want to deal with this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is working well for me.
For the other csproj, we could do it with https://github.com/hvanbakel/CsprojToVs2017 |
Nice! Do you want to try it on other submodules? |