Skip to content

Commit

Permalink
- change type for orchard module
Browse files Browse the repository at this point in the history
- update minor version
- pushed to myget
  • Loading branch information
dalenewman committed Oct 18, 2024
1 parent 65a4025 commit e770557
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Nuget/Transformalize.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package>
<metadata>
<id>Transformalize</id>
<version>0.10.12-beta</version>
<version>0.11.0-beta</version>
<title>Transformalize</title>
<authors>Dale Newman</authors>
<owners>Dale Newman</owners>
<projectUrl>https://github.com/dalenewman/Transformalize</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>The main Transformalize library</description>
<releaseNotes>dependencies</releaseNotes>
<copyright>Copyright © 2013-2022</copyright>
<copyright>Copyright © 2013-2024</copyright>
<tags>etl,transformalize</tags>
<license type="expression">Apache-2.0</license>
<dependencies>
Expand All @@ -25,4 +25,4 @@
<file src="..\src\Transformalize\bin\Release\netstandard2.0\Transformalize.dll" target="lib\netstandard2.0\Transformalize.dll" />
<!--<file src="..\src\Transformalize\bin\Release\netstandard2.0\Transformalize.pdb" target="lib\netstandard2.0\Transformalize.pdb" />-->
</files>
</package>
</package>
6 changes: 3 additions & 3 deletions Nuget/myget.push.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REM Main
REM nuget push "c:\temp\modules\Transformalize.0.10.12-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
nuget push "c:\temp\modules\Transformalize.0.11.0-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json

REM Containers
REM nuget push "c:\temp\modules\Transformalize.Container.Autofac.0.10.12-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
Expand All @@ -10,7 +10,7 @@ REM nuget push "c:\temp\modules\Transformalize.Provider.Console.Autofac.0.10.5-b
REM nuget push "c:\temp\modules\Transformalize.Provider.File.0.10.5-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
REM nuget push "c:\temp\modules\Transformalize.Provider.File.Autofac.0.10.5-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
REM nuget push "c:\temp\modules\Transformalize.Provider.Trace.0.10.5-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
nuget push "c:\temp\modules\Transformalize.Provider.OpenXml.0.10.6-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
REM nuget push "c:\temp\modules\Transformalize.Provider.OpenXml.0.10.6-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
REM nuget push "c:\temp\modules\Transformalize.Provider.Kml.0.10.5-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json

REM Transforms
Expand All @@ -20,5 +20,5 @@ REM nuget push "c:\temp\modules\Transformalize.Transform.Geography.0.10.5-beta.n
REM nuget push "c:\temp\modules\Transformalize.Transform.Xml.0.10.10-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json

REM Legacy
nuget push "c:\temp\modules\Transformalize.Logging.NLog.0.10.6-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
REM nuget push "c:\temp\modules\Transformalize.Logging.NLog.0.10.6-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
REM nuget push "c:\temp\modules\Transformalize.Scheduler.Quartz.0.10.5-beta.nupkg" -source https://www.myget.org/F/transformalize/api/v3/index.json
6 changes: 3 additions & 3 deletions Nuget/nuget.bat
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
REM nuget pack Transformalize.nuspec -OutputDirectory "c:\temp\modules"
nuget pack Transformalize.nuspec -OutputDirectory "c:\temp\modules"

REM CONTAINERS
REM nuget pack Transformalize.Container.Autofac.nuspec -OutputDirectory "c:\temp\modules"

REM REM MISC
nuget pack Transformalize.Logging.NLog.nuspec -OutputDirectory "c:\temp\modules"
REM nuget pack Transformalize.Logging.NLog.nuspec -OutputDirectory "c:\temp\modules"
REM nuget pack Transformalize.Scheduler.Quartz.nuspec -OutputDirectory "c:\temp\modules"

REM PROVIDERS
nuget pack Transformalize.Provider.OpenXml.nuspec -OutputDirectory "c:\temp\modules"
REM nuget pack Transformalize.Provider.OpenXml.nuspec -OutputDirectory "c:\temp\modules"
REM nuget pack Transformalize.Provider.Kml.nuspec -OutputDirectory "c:\temp\modules"
REM nuget pack Transformalize.Provider.File.nuspec -OutputDirectory "c:\temp\modules"
REM nuget pack Transformalize.Provider.File.Autofac.nuspec -OutputDirectory "c:\temp\modules"
Expand Down
4 changes: 2 additions & 2 deletions src/Transformalize/Configuration/Process.cs
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,8 @@ public Field GetField(string aliasOrName) {
/// <summary>
/// An optional Id (used in Orchard CMS module)
/// </summary>
[Cfg(value = 0)]
public int Id { get; set; }
[Cfg(value = (long)0)]
public long Id { get; set; }

public void Dispose() {
if (Preserve)
Expand Down

0 comments on commit e770557

Please sign in to comment.