File tree Expand file tree Collapse file tree 5 files changed +11
-6
lines changed
OneScript.DebugProtocol/TcpServer Expand file tree Collapse file tree 5 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1414 <Configuration >Release</Configuration >
1515 <Solution >$(MSBuildProjectDirectory)/src/1Script.sln</Solution >
1616
17+ <ActiveFramework >net8.0</ActiveFramework >
18+
1719 </PropertyGroup >
1820
1921 <ItemGroup >
3032 <ItemGroup >
3133 <PublishProjects Include =" oscript" >
3234 <ProjectFile >oscript.csproj</ProjectFile >
33- <Framework >net6.0 </Framework >
35+ <Framework >$(ActiveFramework) </Framework >
3436 </PublishProjects >
3537 <PublishProjects Include =" TestApp" >
3638 <ProjectFile >TestApp.csproj</ProjectFile >
37- <Framework >net6.0 -windows</Framework >
39+ <Framework >$(ActiveFramework) -windows</Framework >
3840 </PublishProjects >
3941 </ItemGroup >
4042
106108 </ItemGroup >
107109
108110 <Exec Command =" dotnet publish " src/oscript/oscript.csproj" -r %(RuntimeID.Identity) --self-contained -c $(Configuration) -o " $(ArtifactsRoot)/%(RuntimeID.Identity)/bin" " UseUtf8Encoding =" Always" />
109- <Exec Command =" dotnet publish " src/TestApp/TestApp.csproj" -f net6.0 -windows -c $(Configuration) -p:Platform=%(PlatformItem.MSBuildName) -p:UseAppHost=true -o " $(ArtifactsRoot)/win-%(PlatformItem.Identity)/bin" " UseUtf8Encoding =" Always" />
111+ <Exec Command =" dotnet publish " src/TestApp/TestApp.csproj" -f $(ActiveFramework) -windows -c $(Configuration) -p:Platform=%(PlatformItem.MSBuildName) -p:UseAppHost=true -o " $(ArtifactsRoot)/win-%(PlatformItem.Identity)/bin" " UseUtf8Encoding =" Always" />
110112
111113 <PropertyGroup >
112114 <CppBinPrefix >$(MSBuildProjectDirectory)/src/ScriptEngine.NativeApi/bin/$(Configuration)</CppBinPrefix >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pipeline {
55
66 environment {
77 VersionPrefix = ' 2.0.0'
8- VersionSuffix = ' rc.8 ' + " +${ BUILD_NUMBER} "
8+ VersionSuffix = ' rc.9 ' + " +${ BUILD_NUMBER} "
99 outputEnc = ' 65001'
1010 }
1111
Original file line number Diff line number Diff line change @@ -8,9 +8,12 @@ This Source Code Form is subject to the terms of the
88using System ;
99using System . Net . Sockets ;
1010using System . Runtime . Serialization ;
11+ #if NET48
1112using System . Runtime . Serialization . Formatters . Binary ;
13+ #endif
1214using OneScript . DebugProtocol . Abstractions ;
1315
16+ // ReSharper disable once CheckNamespace
1417namespace OneScript . DebugProtocol
1518{
1619 /// <summary>
Original file line number Diff line number Diff line change 33 <Import Project =" $(MSBuildProjectDirectory)/../oscommon.targets" />
44
55 <PropertyGroup >
6- <TargetFramework >net6 .0-windows</TargetFramework >
6+ <TargetFramework >net8 .0-windows</TargetFramework >
77 <!-- LanguageTargets>$(MSBuildExtensionsPath)\$(VisualStudioVersion)\Bin\Microsoft.CSharp.targets</LanguageTargets-->
88 <ApplicationIcon >logo.ico</ApplicationIcon >
99 <OutputType >WinExe</OutputType >
Original file line number Diff line number Diff line change 77 <Configuration Condition =" '$(Configuration)' == ''" >Release</Configuration >
88 <Platform Condition =" '$(Platform)' == ''" >x86</Platform >
99 <LangVersion >8.0</LangVersion >
10- <TargetFrameworkVersion >net6 .0</TargetFrameworkVersion >
10+ <TargetFrameworkVersion >net8 .0</TargetFrameworkVersion >
1111 <NoWarn >$(NoWarn);CS1591</NoWarn >
1212 <IncludeSourceRevisionInInformationalVersion >False</IncludeSourceRevisionInInformationalVersion >
1313 <ImplicitUsings >disable</ImplicitUsings >
You can’t perform that action at this time.
0 commit comments