Skip to content

Commit 6eb296f

Browse files
committed
chore: add preview label in preparation for release
1 parent 1937ca3 commit 6eb296f

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.autover/autover.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@
138138
},
139139
{
140140
"Name": "Amazon.Lambda.TestTool",
141-
"Path": "Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Amazon.Lambda.TestTool.csproj"
141+
"Path": "Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Amazon.Lambda.TestTool.csproj",
142+
"PrereleaseLabel": "preview"
142143
}
143144
],
144145
"UseCommitsForChangelog": false,
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"Projects": [
3+
{
4+
"Name": "Amazon.Lambda.TestTool",
5+
"Type": "Patch",
6+
"ChangelogMessages": [
7+
"Initial preview release"
8+
]
9+
}
10+
]
11+
}

Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Amazon.Lambda.TestTool.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
44
<Description>A tool to help debug and test your .NET AWS Lambda functions locally.</Description>
@@ -13,7 +13,7 @@
1313
<PackAsTool>true</PackAsTool>
1414
<PackageId>Amazon.Lambda.TestTool</PackageId>
1515
<ToolCommandName>dotnet-lambda-test-tool</ToolCommandName>
16-
<Version>0.0.1-beta.1</Version>
16+
<Version>0.0.1-preview</Version>
1717
<NoWarn>NU5100</NoWarn>
1818
</PropertyGroup>
1919

@@ -40,8 +40,7 @@
4040
<ItemGroup>
4141
<TempFrameworks Include="$(RuntimeSupportTargetFrameworks.Split(';'))" />
4242

43-
<TargetFrameworks Include="@(TempFrameworks)"
44-
Condition="'%(Identity)' != 'netstandard2.0'" />
43+
<TargetFrameworks Include="@(TempFrameworks)" Condition="'%(Identity)' != 'netstandard2.0'" />
4544
</ItemGroup>
4645

4746
<Exec Command="dotnet publish &quot;$(MSBuildThisFileDirectory)../../../../Libraries/src/Amazon.Lambda.RuntimeSupport/Amazon.Lambda.RuntimeSupport.csproj&quot; -c $(Configuration) -f %(TargetFrameworks.Identity) /p:ExecutableOutputType=true" />

0 commit comments

Comments
 (0)