agent-claw: automated task changes
This commit is contained in:
18
cdk/node_modules/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%.template.sln
generated
vendored
Normal file
18
cdk/node_modules/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%.template.sln
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.26124.0
|
||||
MinimumVisualStudioVersion = 15.0.26124.0
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x64 = Debug|x64
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x64 = Release|x64
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
25
cdk/node_modules/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%/%name.PascalCased%.template.fsproj
generated
vendored
Normal file
25
cdk/node_modules/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%/%name.PascalCased%.template.fsproj
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<!-- Roll forward to future major versions of the netcoreapp as needed -->
|
||||
<RollForward>Major</RollForward>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="%name.PascalCased%Stack.fs" />
|
||||
<Compile Include="Program.fs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!-- CDK Construct Library dependencies -->
|
||||
<PackageReference Include="Amazon.CDK.Lib" Version="%cdk-version%" />
|
||||
<PackageReference Include="Constructs" Version="%constructs-version%" />
|
||||
|
||||
<!-- jsii Roslyn analyzers (un-comment to obtain compile-time checks for missing required props
|
||||
<PackageReference Include="Amazon.Jsii.Analyzers" Version="*" PrivateAssets="all" />
|
||||
-->
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
14
cdk/node_modules/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%/%name.PascalCased%Stack.template.fs
generated
vendored
Normal file
14
cdk/node_modules/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%/%name.PascalCased%Stack.template.fs
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace %name.PascalCased%
|
||||
|
||||
open Amazon.CDK
|
||||
open Amazon.CDK.AWS.SNS
|
||||
open Amazon.CDK.AWS.SNS.Subscriptions
|
||||
open Amazon.CDK.AWS.SQS
|
||||
|
||||
type %name.PascalCased%Stack(scope, id, props) as this =
|
||||
inherit Stack(scope, id, props)
|
||||
|
||||
let queue = Queue(this, "%name.PascalCased%Queue", QueueProps(VisibilityTimeout = Duration.Seconds(300.)))
|
||||
|
||||
let topic = Topic(this, "%name.PascalCased%Topic")
|
||||
do topic.AddSubscription(SqsSubscription(queue)) |> ignore
|
||||
11
cdk/node_modules/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%/Program.template.fs
generated
vendored
Normal file
11
cdk/node_modules/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%/Program.template.fs
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
open Amazon.CDK
|
||||
open %name.PascalCased%
|
||||
|
||||
[<EntryPoint>]
|
||||
let main _ =
|
||||
let app = App(null)
|
||||
|
||||
%name.PascalCased%Stack(app, "%stackname%", StackProps()) |> ignore
|
||||
|
||||
app.Synth() |> ignore
|
||||
0
|
||||
Reference in New Issue
Block a user