-
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.
- Loading branch information
Showing
8 changed files
with
70 additions
and
0 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 |
---|---|---|
@@ -0,0 +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" |
Binary file not shown.
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,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<uSync> | ||
<BackOffice> | ||
<Folder>~/uSync/v8/</Folder> | ||
<FlatFolders>True</FlatFolders> | ||
<ImportAtStartup>False</ImportAtStartup> | ||
<ExportAtStartup>False</ExportAtStartup> | ||
<ExportOnSave>True</ExportOnSave> | ||
<UseGuidFilenames>False</UseGuidFilenames> | ||
<Handlers EnableMissing="true"> | ||
<Handler Alias="dataTypeHandler" Enabled="true" /> | ||
<Handler Alias="languageHandler" Enabled="true" /> | ||
<Handler Alias="macroHandler" Enabled="true" /> | ||
<Handler Alias="mediaTypeHandler" Enabled="true" /> | ||
<Handler Alias="memberTypeHandler" Enabled="true" /> | ||
<Handler Alias="templateHandler" Enabled="true" /> | ||
<Handler Alias="contentTypeHandler" Enabled="true" /> | ||
</Handlers> | ||
</BackOffice> | ||
</uSync> |
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,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>uSync</id> | ||
<version>8.0.0-alpha58</version> | ||
<title>uSync for Umbraco 8</title> | ||
<authors>Kevin Jump</authors> | ||
<owners>Jumoo</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Database syncing for Umbraco</description> | ||
<summary></summary> | ||
<releaseNotes> | ||
8.0 - Alpha release for Umbraco 8 | ||
</releaseNotes> | ||
<dependencies> | ||
<dependency id="uSync.Core" version="8.0.0-alpha58"/> | ||
<dependency id="Microsoft.AspNet.SignalR.Core" version="2.4.0"/> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="bin\release\uSync8.BackOffice.dll" target="lib\net472" /> | ||
<file src="Config\**\*" target="content\Config" /> | ||
<file src="App_Plugins\uSync8\**\*.*" target="content\App_Plugins\uSync8" /> | ||
</files> | ||
</package> |
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,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd"> | ||
<metadata> | ||
<id>uSync.Core</id> | ||
<version>8.0.0-alpha58</version> | ||
<title>uSync Core for Umbraco 8</title> | ||
<authors>Kevin Jump</authors> | ||
<owners>Jumoo</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Database syncing for Umbraco 8</description> | ||
<summary>Core Dll's for uSync 8</summary> | ||
<releaseNotes>Alpha Release for Umbraco 8</releaseNotes> | ||
</metadata> | ||
<files> | ||
<file src="bin\release\uSync8.Core.dll" target="lib\net472" /> | ||
</files> | ||
</package> |
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