-
-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added feature to run scripts on startup
- Loading branch information
1 parent
d98b4bd
commit 1dfd932
Showing
2 changed files
with
134 additions
and
24 deletions.
There are no files selected for viewing
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
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,19 @@ | ||
<Commands> | ||
<Command Processed="false"> | ||
<PreChecks> | ||
<PreCheck type="FileExists">Nuget.Common.dll</PreCheck> | ||
<PreCheck type="FileExists">XrmToolBox.PluginsStore.dll</PreCheck> | ||
</PreChecks> | ||
<Description>This version of XrmToolBox removes the legacy tool library. Nuget assemblies are not needed anymore and will be deleted.</Description> | ||
<Actions> | ||
<Action>IF EXIST "Nuget.Common.dll" (DEL "Nuget.Common.dll")</Action> | ||
<Action>IF EXIST "Nuget.Configuration.dll" (DEL "Nuget.Configuration.dll")</Action> | ||
<Action>IF EXIST "Nuget.Core.dll" (DEL "Nuget.Core.dll")</Action> | ||
<Action>IF EXIST "Nuget.Frameworks.dll" (DEL "Nuget.Frameworks.dll")</Action> | ||
<Action>IF EXIST "Nuget.Packaging.dll" (DEL "Nuget.Packaging.dll")</Action> | ||
<Action>IF EXIST "Nuget.Protocol.dll" (DEL "Nuget.Protocol.dll")</Action> | ||
<Action>IF EXIST "Nuget.Versioning.dll" (DEL "Nuget.Versioning.dll")</Action> | ||
<Action>IF EXIST "XrmToolBox.PluginsStore.dll" (DEL "Nuget.Versioning.dll")</Action> | ||
</Actions> | ||
</Command> | ||
</Commands> |