diff --git a/.gitignore b/.gitignore index 9e9f378..a1b4466 100644 --- a/.gitignore +++ b/.gitignore @@ -351,3 +351,6 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ .ipynb_checkpoints/ + +# JetBrains +.idea diff --git a/modelCsharp/SVSModel/Models/Defaults.cs b/modelCsharp/SVSModel/Models/Defaults.cs index 3061470..fd59086 100644 --- a/modelCsharp/SVSModel/Models/Defaults.cs +++ b/modelCsharp/SVSModel/Models/Defaults.cs @@ -39,7 +39,7 @@ public class Defaults public static readonly string SoilTexture = "Clay"; public static readonly string SampleDepth = "0-30cm"; public static readonly double BulkDensity = 1.22; - public static readonly string PMNtype = "PMN"; + public static readonly string PMNtype = "HWEON"; public static readonly double PMN = 60; public static readonly int Splits = 1; public static readonly string RainPrior = "Typical"; diff --git a/modelCsharp/SVSModel/README.md b/modelCsharp/SVSModel/README.md index 9d82730..a92b0bf 100644 --- a/modelCsharp/SVSModel/README.md +++ b/modelCsharp/SVSModel/README.md @@ -3,5 +3,5 @@ First update the `SVSModel.csproj` `` field, then run these commands wi ```bash $ dotnet pack SVSModel/SVSModel.csproj -$ dotnet nuget push SVSModel/bin/Debug/SVSModel.X.X.X.nupkg --source "https://pkgs.dev.azure.com/rezaresystems/48ae16c6-5f20-44a0-ad41-e047c311de0a/_packaging/svs-model-calculator/nuget/v3/index.json" --api-key az --interactive +$ dotnet nuget push SVSModel/bin/Release/SVSModel.X.X.X.nupkg --source "https://pkgs.dev.azure.com/rezaresystems/48ae16c6-5f20-44a0-ad41-e047c311de0a/_packaging/svs-model-calculator/nuget/v3/index.json" --api-key az --interactive ``` diff --git a/modelCsharp/SVSModel/SVSModel.csproj b/modelCsharp/SVSModel/SVSModel.csproj index 4a25f25..6be0510 100644 --- a/modelCsharp/SVSModel/SVSModel.csproj +++ b/modelCsharp/SVSModel/SVSModel.csproj @@ -2,7 +2,7 @@ netstandard2.0 SVSModel - 1.1.0 + 1.1.2 PotatoesNZ A wrapper of the SVS Model code