Skip to content

Commit 21cf269

Browse files
committed
Upgrade to dotnet 8
1 parent 1da4500 commit 21cf269

File tree

4 files changed

+6
-35
lines changed

4 files changed

+6
-35
lines changed

appveyor.yml

-14
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,3 @@ for:
2727

2828
build_script:
2929
- 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 numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
32
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
54
<ImplicitUsings>enable</ImplicitUsings>
65
</PropertyGroup>
7-
86
<PropertyGroup>
97
<IsPackable>false</IsPackable>
108
</PropertyGroup>
11-
129
<ItemGroup>
1310
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.11.0" />
1411
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
@@ -19,15 +16,12 @@
1916
</PackageReference>
2017
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
2118
</ItemGroup>
22-
2319
<ItemGroup>
2420
<ProjectReference Include="..\CurlToCSharp\CurlToCSharp.csproj" />
2521
</ItemGroup>
26-
2722
<ItemGroup>
2823
<None Update="Resources\text-file.txt">
2924
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3025
</None>
3126
</ItemGroup>
32-
33-
</Project>
27+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
54
<ImplicitUsings>enable</ImplicitUsings>
65
</PropertyGroup>
7-
86
<PropertyGroup>
97
<IsPackable>false</IsPackable>
108
</PropertyGroup>
11-
129
<ItemGroup>
1310
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1411
<PackageReference Include="xunit" Version="2.8.0" />
@@ -18,10 +15,8 @@
1815
</PackageReference>
1916
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
2017
</ItemGroup>
21-
2218
<ItemGroup>
2319
<ProjectReference Include="..\Curl.CommandLine.Parser\Curl.CommandLine.Parser.csproj" />
2420
<ProjectReference Include="..\Curl.HttpClient.Converter\Curl.HttpClient.Converter.csproj" />
2521
</ItemGroup>
26-
27-
</Project>
22+
</Project>

src/CurlToCSharp/CurlToCSharp.csproj

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
32
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
54
<ImplicitUsings>enable</ImplicitUsings>
65
</PropertyGroup>
7-
86
<ItemGroup>
97
<ProjectReference Include="..\Curl.HttpClient.Converter\Curl.HttpClient.Converter.csproj" />
108
</ItemGroup>
11-
129
<Target Name="CustomActionsBeforePublish" BeforeTargets="BeforePublish">
1310
<Exec Command="npm install" />
1411
<Exec Command="gulp" />
1512
</Target>
16-
17-
</Project>
13+
</Project>

0 commit comments

Comments
 (0)