File tree 4 files changed +6
-35
lines changed
CurlToCSharp.IntegrationTests
4 files changed +6
-35
lines changed Original file line number Diff line number Diff line change 27
27
28
28
build_script :
29
29
- dotnet cake --Target=CI --cypressEnableRecording=true
30
-
31
- deploy :
32
- - provider : Octopus
33
- push_packages : true
34
- artifact : CurlToCSharp.$(APPVEYOR_BUILD_VERSION).zip
35
- create_release : true
36
- deploy_release : true
37
- server : https://olsh.octopus.app
38
- api_key :
39
- secure : jXJ3iAuj61EU565McVN9j/5aX/TXOu9wy6+QLCl6J8v8Sp+Xs4GHr+zUBsaCQ28P
40
- project : CurlToCSharp
41
- environment : Production
42
- release_number : $(APPVEYOR_BUILD_VERSION)
43
- deploy_wait : true
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
-
3
2
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
3
+ <TargetFramework >net8 .0</TargetFramework >
5
4
<ImplicitUsings >enable</ImplicitUsings >
6
5
</PropertyGroup >
7
-
8
6
<PropertyGroup >
9
7
<IsPackable >false</IsPackable >
10
8
</PropertyGroup >
11
-
12
9
<ItemGroup >
13
10
<PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 4.11.0" />
14
11
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.9.0" />
19
16
</PackageReference >
20
17
<DotNetCliToolReference Include =" dotnet-xunit" Version =" 2.3.1" />
21
18
</ItemGroup >
22
-
23
19
<ItemGroup >
24
20
<ProjectReference Include =" ..\CurlToCSharp\CurlToCSharp.csproj" />
25
21
</ItemGroup >
26
-
27
22
<ItemGroup >
28
23
<None Update =" Resources\text-file.txt" >
29
24
<CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
30
25
</None >
31
26
</ItemGroup >
32
-
33
- </Project >
27
+ </Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
-
3
2
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
3
+ <TargetFramework >net8 .0</TargetFramework >
5
4
<ImplicitUsings >enable</ImplicitUsings >
6
5
</PropertyGroup >
7
-
8
6
<PropertyGroup >
9
7
<IsPackable >false</IsPackable >
10
8
</PropertyGroup >
11
-
12
9
<ItemGroup >
13
10
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.9.0" />
14
11
<PackageReference Include =" xunit" Version =" 2.8.0" />
18
15
</PackageReference >
19
16
<DotNetCliToolReference Include =" dotnet-xunit" Version =" 2.3.1" />
20
17
</ItemGroup >
21
-
22
18
<ItemGroup >
23
19
<ProjectReference Include =" ..\Curl.CommandLine.Parser\Curl.CommandLine.Parser.csproj" />
24
20
<ProjectReference Include =" ..\Curl.HttpClient.Converter\Curl.HttpClient.Converter.csproj" />
25
21
</ItemGroup >
26
-
27
- </Project >
22
+ </Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
-
3
2
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
3
+ <TargetFramework >net8 .0</TargetFramework >
5
4
<ImplicitUsings >enable</ImplicitUsings >
6
5
</PropertyGroup >
7
-
8
6
<ItemGroup >
9
7
<ProjectReference Include =" ..\Curl.HttpClient.Converter\Curl.HttpClient.Converter.csproj" />
10
8
</ItemGroup >
11
-
12
9
<Target Name =" CustomActionsBeforePublish" BeforeTargets =" BeforePublish" >
13
10
<Exec Command =" npm install" />
14
11
<Exec Command =" gulp" />
15
12
</Target >
16
-
17
- </Project >
13
+ </Project >
You can’t perform that action at this time.
0 commit comments