agent-claw: automated task changes
This commit is contained in:
18
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%.template.sln
generated
vendored
Normal file
18
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/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
|
||||
20
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%/%name.PascalCased%.template.csproj
generated
vendored
Normal file
20
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%/%name.PascalCased%.template.csproj
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
<!-- 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>
|
||||
13
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%/%name.PascalCased%Stack.template.cs
generated
vendored
Normal file
13
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%/%name.PascalCased%Stack.template.cs
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
using Amazon.CDK;
|
||||
using Constructs;
|
||||
|
||||
namespace %name.PascalCased%
|
||||
{
|
||||
public class %name.PascalCased%Stack : Stack
|
||||
{
|
||||
internal %name.PascalCased%Stack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
||||
{
|
||||
// The code that defines your stack goes here
|
||||
}
|
||||
}
|
||||
}
|
||||
1
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%/GlobalSuppressions.cs
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%/GlobalSuppressions.cs
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Potential Code Quality Issues", "RECS0026:Possible unassigned object created by 'new'", Justification = "Constructs add themselves to the scope in which they are created")]
|
||||
44
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%/Program.template.cs
generated
vendored
Normal file
44
cdk/node_modules/aws-cdk/lib/init-templates/app/csharp/src/%name.PascalCased%/Program.template.cs
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
using Amazon.CDK;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace %PascalNameSpace%
|
||||
{
|
||||
sealed class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
var app = new App();
|
||||
new %name.PascalCased%Stack(app, "%stackname%", new %PascalStackProps%
|
||||
{
|
||||
// If you don't specify 'env', this stack will be environment-agnostic.
|
||||
// Account/Region-dependent features and context lookups will not work,
|
||||
// but a single synthesized template can be deployed anywhere.
|
||||
|
||||
// Uncomment the next block to specialize this stack for the AWS Account
|
||||
// and Region that are implied by the current CLI configuration.
|
||||
/*
|
||||
Env = new Amazon.CDK.Environment
|
||||
{
|
||||
Account = System.Environment.GetEnvironmentVariable("CDK_DEFAULT_ACCOUNT"),
|
||||
Region = System.Environment.GetEnvironmentVariable("CDK_DEFAULT_REGION"),
|
||||
}
|
||||
*/
|
||||
|
||||
// Uncomment the next block if you know exactly what Account and Region you
|
||||
// want to deploy the stack to.
|
||||
/*
|
||||
Env = new Amazon.CDK.Environment
|
||||
{
|
||||
Account = "123456789012",
|
||||
Region = "us-east-1",
|
||||
}
|
||||
*/
|
||||
|
||||
// For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html
|
||||
});
|
||||
app.Synth();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user