Skip to content

Commit

Permalink
clean up and fix for dotnet-8 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK authored Jun 5, 2024
1 parent 7a2df5b commit c633d8a
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 249 deletions.
10 changes: 5 additions & 5 deletions builder.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "aws-crt-dotnet",
"build_steps": [
"dotnet build -f netstandard2.0 -p:AwsCrtPlatformTarget={aws_crt_platform_target}",
"dotnet pack -p:TargetFrameworks=netstandard2.0 -p:AwsCrtPlatformTarget={aws_crt_platform_target}"
"dotnet build -f netstandard2.0 -p:AwsCrtPlatformTarget={aws_crt_platform_target} --configuration Debug",
"dotnet pack -p:TargetFrameworks=netstandard2.0 -p:AwsCrtPlatformTarget={aws_crt_platform_target} --configuration Debug"
],
"test_steps": [
"dotnet build tests/tests.csproj {build_tests_args}",
"dotnet test tests --no-build {run_tests_args}"
"dotnet build tests/tests.csproj {build_tests_args} --configuration Debug",
"dotnet test tests --no-build {run_tests_args} --configuration Debug"
],
"imports": [
"dotnetcore"
Expand Down Expand Up @@ -90,7 +90,7 @@
"variants": {
"mono_test" : {
"!test_steps": [
"dotnet build tests/tests.csproj -t:MonoTest {build_tests_args}"
"dotnet build tests/tests.csproj -t:MonoTest {build_tests_args} --configuration Debug"
]
}
}
Expand Down
4 changes: 2 additions & 2 deletions clean_rebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ rm -rf tests/obj
rm -rf tools/Elasticurl/bin
rm -rf tools/Elasticurl/ob

dotnet build -f netstandard2.0 -p:PlatformTarget=x64 -p:CMakeConfig=Debug
dotnet pack -p:TargetFrameworks=netstandard2.0
dotnet build -f netstandard2.0 -p:PlatformTarget=x64 -p:CMakeConfig=Debug --configuration Debug
dotnet pack -p:TargetFrameworks=netstandard2.0 --configuration Debug
18 changes: 0 additions & 18 deletions codebuild/common-posix.sh

This file was deleted.

26 changes: 0 additions & 26 deletions codebuild/linux-clang3-x64.yml

This file was deleted.

29 changes: 0 additions & 29 deletions codebuild/linux-clang6-x64.yml

This file was deleted.

33 changes: 0 additions & 33 deletions codebuild/linux-clang8-x64.yml

This file was deleted.

26 changes: 0 additions & 26 deletions codebuild/linux-gcc-4x-x64.yml

This file was deleted.

26 changes: 0 additions & 26 deletions codebuild/linux-gcc-5x-x64.yml

This file was deleted.

26 changes: 0 additions & 26 deletions codebuild/linux-gcc-6x-x64.yml

This file was deleted.

26 changes: 0 additions & 26 deletions codebuild/linux-gcc-7x-x64.yml

This file was deleted.

10 changes: 0 additions & 10 deletions codebuild/windows-msvc-2015-x86.yml

This file was deleted.

11 changes: 0 additions & 11 deletions codebuild/windows-msvc-2015.yml

This file was deleted.

11 changes: 0 additions & 11 deletions codebuild/windows-msvc-2017.yml

This file was deleted.

0 comments on commit c633d8a

Please sign in to comment.