-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version sync, cross reference update
- Loading branch information
valdisiljuconoks
authored and
valdisiljuconoks
committed
Apr 24, 2017
1 parent
33572ce
commit a45bc96
Showing
43 changed files
with
173 additions
and
144 deletions.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
Tests/DbLocalizationProvider.EPiServer.Sample/App_Data/EPiServerDB_3f986989.mdf
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Tests/DbLocalizationProvider.EPiServer.Sample/App_Data/EPiServerDB_3f986989_log.ldf
Binary file not shown.
1 change: 1 addition & 0 deletions
1
Tests/DbLocalizationProvider.EPiServer.Sample/App_Start/InitLocalization.cs
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
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
Binary file added
BIN
+146 KB
...ted/DbLocalizationProvider.AdminUI.EPiServer/DbLocalizationProvider.AdminUI.EPiServer.zip
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
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
2 changes: 1 addition & 1 deletion
2
Tests/DbLocalizationProvider.MigrationTool.Tests/packages.config
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
Binary file modified
BIN
+0 Bytes
(100%)
Tests/DbLocalizationProvider.MvcSample/App_Data/DbLocalizationProvider.MvcSample.mdf
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Tests/DbLocalizationProvider.MvcSample/App_Data/DbLocalizationProvider.MvcSample_log.ldf
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
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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="EntityFramework" version="6.1.2" targetFramework="net452" /> | ||
<package id="LocalizationProvider.Abstractions" version="2.5.0" targetFramework="net452" /> | ||
<package id="LocalizationProvider" version="2.6.0" targetFramework="net452" /> | ||
<package id="LocalizationProvider.Abstractions" version="2.6.0" targetFramework="net452" /> | ||
<package id="LocalizationProvider.AdminUI" version="2.6.0" targetFramework="net452" /> | ||
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net452" /> | ||
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net452" /> | ||
<package id="Microsoft.AspNet.WebApi.Client" version="5.0.0" targetFramework="net452" /> | ||
<package id="Microsoft.AspNet.WebApi.Core" version="5.0.0" targetFramework="net452" /> | ||
<package id="Microsoft.AspNet.WebApi.Owin" version="5.0.0" targetFramework="net452" /> | ||
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net452" /> | ||
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="1.0.0" targetFramework="net452" /> | ||
<package id="Microsoft.Net.Compilers" version="2.1.0" targetFramework="net452" developmentDependency="true" /> | ||
<package id="Microsoft.Owin" version="3.0.1" targetFramework="net452" /> | ||
<package id="Microsoft.Owin.FileSystems" version="3.0.0" targetFramework="net452" /> | ||
<package id="Microsoft.Owin.Host.SystemWeb" version="3.0.0" targetFramework="net452" /> | ||
<package id="Microsoft.Owin.StaticFiles" version="3.0.0" targetFramework="net452" /> | ||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net452" /> | ||
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net452" /> | ||
<package id="Owin" version="1.0" targetFramework="net452" /> | ||
</packages> |
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,11 +1,21 @@ | ||
Add-Type -assembly "system.io.compression.filesystem" | ||
|
||
cd .\.nuget | ||
|
||
.\nuget.exe pack ..\src\DbLocalizationProvider.Abstractions\DbLocalizationProvider.Abstractions.csproj -Properties Configuration=Release | ||
.\nuget.exe pack ..\src\DbLocalizationProvider\DbLocalizationProvider.csproj -Properties Configuration=Release | ||
.\nuget.exe pack ..\src\DbLocalizationProvider.AdminUI\DbLocalizationProvider.AdminUI.csproj -Properties Configuration=Release | ||
|
||
.\nuget.exe pack ..\src\DbLocalizationProvider.EPiServer\DbLocalizationProvider.EPiServer.csproj -Properties Configuration=Release | ||
|
||
$moduleName = "DbLocalizationProvider.AdminUI.EPiServer" | ||
$source = $PSScriptRoot + "\src\" + $moduleName + "\modules\_protected\" + $moduleName | ||
$destination = $PSScriptRoot + "\src\" + $moduleName + "\" + $moduleName + ".zip" | ||
|
||
If(Test-path $destination) {Remove-item $destination} | ||
[io.compression.zipfile]::CreateFromDirectory($Source, $destination) | ||
|
||
.\nuget.exe pack ..\src\DbLocalizationProvider.AdminUI.EPiServer\DbLocalizationProvider.AdminUI.EPiServer.csproj -Properties Configuration=Release | ||
.\nuget.exe pack ..\src\DbLocalizationProvider.MigrationTool\DbLocalizationProvider.MigrationTool.csproj -Properties Configuration=Release -tool | ||
.\nuget.exe pack ..\src\DbLocalizationProvider.EPiServer.JsResourceHandler\DbLocalizationProvider.EPiServer.JsResourceHandler.csproj -Properties Configuration=Release | ||
cd ..\ | ||
cd ..\ |
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
Oops, something went wrong.