-
Notifications
You must be signed in to change notification settings - Fork 286
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
Change plugin projects to netstandard and sdk style csproj's #741
Change plugin projects to netstandard and sdk style csproj's #741
Conversation
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.
Some notes to self to clean up this branch a bit
Rebased on latest master, changes are down from 59 to 32 files :) |
<PropertyGroup> | ||
<DualityPackageExcludeParentElement /> | ||
<StartAction>Program</StartAction> | ||
<StartProgram>$(SolutionDir)Build\Output\DualityEditor.exe</StartProgram> | ||
<StartWorkingDirectory>..\</StartWorkingDirectory> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
</PropertyGroup> |
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.
Indentation seems inconsistent in this file, similarly in other csproj files
@@ -230,6 +231,7 @@ public static string CreateNewProject(string projName, string projFolder, Projec | |||
compileElement.AddAfterSelf(newCompileElement); | |||
} | |||
coreProject.Save(SourceCodeProjectCorePluginFile); | |||
*/ |
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.
Why not just remove this entirely instead of commenting it out?
…ckage management (#789) #CHANGE: Removed package manager and new project logic in favor of csproj based package management, bumped version to 4.0.0-alpha
Changes:
Also solves #743