Skip to content

Commit

Permalink
Update the AWS and newtonsoft Json dependencies to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
gurmitteotia committed Jan 26, 2020
1 parent 071a79a commit 7a2fed5
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Guflow.IntegrationTests/Guflow.IntegrationTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.SimpleWorkflow" Version="3.3.0.75" />
<PackageReference Include="AWSSDK.SimpleWorkflow" Version="3.3.101.85" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.12.0" />
Expand Down
10 changes: 10 additions & 0 deletions Guflow.Lambda/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"profiles": {
"Mock Lambda Test Tool": {
"commandName": "Executable",
"commandLineArgs": "--port 5050",
"workingDirectory": ".\\bin\\Debug\\netcoreapp2.1",
"executablePath": "C:\\Users\\%USERNAME%\\.dotnet\\tools\\dotnet-lambda-test-tool-2.1.exe"
}
}
}
2 changes: 1 addition & 1 deletion Guflow.Tests/Guflow.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.SimpleWorkflow" Version="3.3.0.75" />
<PackageReference Include="AWSSDK.SimpleWorkflow" Version="3.3.101.85" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Moq" Version="4.10.1" />
<PackageReference Include="NUnit" Version="3.11.0" />
Expand Down
13 changes: 10 additions & 3 deletions Guflow/Guflow.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>Guflow</RootNamespace>
<AssemblyName>Guflow</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageLicenseUrl>https://github.com/gurmitteotia/guflow/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>https://github.com/gurmitteotia/guflow</PackageProjectUrl>
<Authors>Gurmit Teotia</Authors>
<PackageTags>Amazon SWF C# Guflow .Net Simple Workflow Service</PackageTags>
Expand All @@ -14,6 +14,7 @@
<IsPackable>true</IsPackable>
<PackageReleaseNotes>https://github.com/gurmitteotia/guflow/releases</PackageReleaseNotes>
<PackageIconUrl>https://github.com/gurmitteotia/guflow/blob/master/logo.jpg</PackageIconUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>.\bin\Debug</OutputPath>
Expand All @@ -24,8 +25,8 @@
<DocumentationFile>.\bin\Release\Guflow.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.SimpleWorkflow" Version="3.3.0.75" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="AWSSDK.SimpleWorkflow" Version="3.3.101.85" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
Expand All @@ -40,4 +41,10 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions Guflow/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Guflow")]
[assembly: AssemblyDescription("C#.Net library to program all features of Amazon SWF (Simple Workflow Service)")]
[assembly: AssemblyDescription("A C#.NET library to write elastic and scalable workflows on AWS stack.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Guflow")]
[assembly: AssemblyCopyright("Gurmit Teotia, Copyright © 2019")]
[assembly: AssemblyCopyright("Gurmit Teotia, Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down

0 comments on commit 7a2fed5

Please sign in to comment.