Skip to content

Commit

Permalink
Target Cake v1.0.0 & add net5.0 TFM. Closes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
augustoproiete committed Mar 18, 2021
1 parent 752efcb commit 3635be3
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ElasticBeanstalk.sln → Cake.AWS.ElasticBeanstalk.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26730.12
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ElasticBeanstalk", "src\ElasticBeanstalk\ElasticBeanstalk.csproj", "{4EF6132C-84BB-4571-82C6-ECA9D1F98A70}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cake.AWS.ElasticBeanstalk", "src\Cake.AWS.ElasticBeanstalk\Cake.AWS.ElasticBeanstalk.csproj", "{4EF6132C-84BB-4571-82C6-ECA9D1F98A70}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Task("restore")
.IsDependentOn("clean")
.Does(() =>
{
DotNetCoreRestore("./ElasticBeanstalk.sln", new DotNetCoreRestoreSettings
DotNetCoreRestore("./Cake.AWS.ElasticBeanstalk.sln", new DotNetCoreRestoreSettings
{
LockedMode = true,
});
Expand All @@ -25,7 +25,7 @@ Task("build")
.IsDependentOn("restore")
.DoesForEach(new[] { "Debug", "Release" }, (configuration) =>
{
DotNetCoreBuild("./ElasticBeanstalk.sln", new DotNetCoreBuildSettings
DotNetCoreBuild("./Cake.AWS.ElasticBeanstalk.sln", new DotNetCoreBuildSettings
{
Configuration = configuration,
NoRestore = true,
Expand Down Expand Up @@ -62,7 +62,7 @@ Task("pack")
{
var releaseNotes = $"https://github.com/cake-contrib/Cake.AWS.ElasticBeanstalk/releases/tag/v{buildVersion.Version}";

DotNetCorePack("./src/ElasticBeanstalk/ElasticBeanstalk.csproj", new DotNetCorePackSettings
DotNetCorePack("./src/Cake.AWS.ElasticBeanstalk/Cake.AWS.ElasticBeanstalk.csproj", new DotNetCorePackSettings
{
Configuration = "Release",
NoRestore = true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>net5.0;netstandard2.0;net461</TargetFrameworks>
<RootNamespace>Cake.AWS.ElasticBeanstalk</RootNamespace>

<AssemblyName>Cake.AWS.ElasticBeanstalk</AssemblyName>
Expand Down Expand Up @@ -37,7 +37,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
<PackageReference Include="Cake.Core" Version="1.0.0" PrivateAssets="All" />

<PackageReference Include="AWSSDK.Core" Version="3.5.3.8" />
<PackageReference Include="AWSSDK.ElasticBeanstalk" Version="3.5.2.36" />
Expand Down

0 comments on commit 3635be3

Please sign in to comment.