-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Props and Targets (distrib folders) to back office , so they get …
…copeid on a deployment
- Loading branch information
Showing
5 changed files
with
32 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
|
||
@Echo Packaging | ||
nuget pack ..\uSync8.BackOffice\uSync.nuspec -build -Properties version="%1" | ||
nuget pack ..\uSync8.Core\uSync.Core.nuspec -build -Properties version="%1" | ||
nuget pack ..\uSync8.BackOffice\uSync.nuspec -build -version %1 | ||
nuget pack ..\uSync8.Core\uSync.Core.nuspec -build -version %1 |
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,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<CopyAllFilesToSingleFolderForPackageDependsOn> | ||
AdduSyncDataToOutput; | ||
$(CopyAllFilesToSingleFolderForPackageDependsOn); | ||
</CopyAllFilesToSingleFolderForPackageDependsOn> | ||
|
||
<CopyAllFilesToSingleFolderForMsdeployDependsOn> | ||
AdduSyncDataToOutput; | ||
$(CopyAllFilesToSingleFolderForPackageDependsOn); | ||
</CopyAllFilesToSingleFolderForMsdeployDependsOn> | ||
</PropertyGroup> | ||
</Project> |
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,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Target Name="AdduSyncDataToOutput"> | ||
<ItemGroup> | ||
<uSyncFilesToInclude Include=".\uSync\**\*"> | ||
<Dir>uSync</Dir> | ||
</uSyncFilesToInclude> | ||
<FilesForPackagingFromProject Include="@(uSyncFilesToInclude)"> | ||
<DestinationRelativePath>%(uSyncFilesToInclude.Dir)\%(RecursiveDir)%(Filename)%(Extension)</DestinationRelativePath> | ||
</FilesForPackagingFromProject> | ||
</ItemGroup> | ||
</Target> | ||
</Project> |
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