Skip to content

Commit 78fb5d9

Browse files
authored
Merge pull request #8 from apiiro/ohad/dotnet-8
build with .net 8
2 parents ac08453 + 2dfcf9a commit 78fb5d9

10 files changed

+23
-21
lines changed

src/Analysis/Ast/Impl/Microsoft.Python.Analysis.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
55
<AssemblyName>Microsoft.Python.Analysis</AssemblyName>
66
<PackageId>Microsoft.Python.Analysis</PackageId>
7-
<Version>1.0.3</Version>
7+
<Version>1.0.4</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>

src/Analysis/Ast/Test/Microsoft.Python.Analysis.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.Analysis.Tests</RootNamespace>
55
<AssemblyName>Microsoft.Python.Analysis.Tests</AssemblyName>
66
</PropertyGroup>
@@ -24,7 +24,7 @@
2424
</ItemGroup>
2525
<ItemGroup>
2626
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
27-
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
27+
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
2828
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
2929
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
3030
<PackageReference Include="MicroBuild.Core" Version="0.3.0">

src/Analysis/Core/Impl/Microsoft.Python.Analysis.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.Analysis</RootNamespace>
55
<AssemblyName>Microsoft.Python.Analysis.Core</AssemblyName>
66
<PackageId>Microsoft.Python.Analysis.Core</PackageId>
7-
<Version>1.0.3</Version>
7+
<Version>1.0.4</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>

src/Core/Impl/Microsoft.Python.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.Core</RootNamespace>
55
<AssemblyName>Microsoft.Python.Core</AssemblyName>
66
<PackageId>Microsoft.Python.Core</PackageId>
7-
<Version>1.0.3</Version>
7+
<Version>1.0.4</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>

src/Core/Test/Microsoft.Python.Core.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.Core.Tests</RootNamespace>
55
<AssemblyName>Microsoft.Python.Core.Tests</AssemblyName>
66
</PropertyGroup>
@@ -28,7 +28,7 @@
2828
</ItemGroup>
2929
<ItemGroup>
3030
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
31-
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
31+
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
3232
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
3333
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
3434
<PackageReference Include="MicroBuild.Core" Version="0.3.0">

src/LanguageServer/Impl/Microsoft.Python.LanguageServer.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.LanguageServer</RootNamespace>
55
<AssemblyName>Microsoft.Python.LanguageServer</AssemblyName>
66
<PackageId>Microsoft.Python.LanguageServer</PackageId>
7-
<Version>1.0.3</Version>
7+
<Version>1.0.4</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<PackageDescription>Apiiro Python Language Server</PackageDescription>
@@ -37,8 +37,8 @@
3737
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3838
</PackageReference>
3939
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="3.1.8" />
40-
<PackageReference Include="NewtonSoft.Json" Version="12.0.3" />
41-
<PackageReference Include="StreamJsonRpc" Version="2.5.46" />
40+
<PackageReference Include="NewtonSoft.Json" Version="13.0.3" />
41+
<PackageReference Include="StreamJsonRpc" Version="2.18.48" />
4242
</ItemGroup>
4343
<ItemGroup>
4444
<ProjectReference Include="..\..\Analysis\Ast\Impl\Microsoft.Python.Analysis.csproj" />

src/LanguageServer/Test/Microsoft.Python.LanguageServer.Tests.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.LanguageServer.Tests</RootNamespace>
55
<AssemblyName>Microsoft.Python.LanguageServer.Tests</AssemblyName>
66
</PropertyGroup>
@@ -24,14 +24,16 @@
2424
</ItemGroup>
2525
<ItemGroup>
2626
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
27-
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
27+
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
2828
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
2929
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
3030
<PackageReference Include="MicroBuild.Core" Version="0.3.0">
3131
<PrivateAssets>all</PrivateAssets>
3232
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3333
</PackageReference>
34+
<PackageReference Include="NewtonSoft.Json" Version="13.0.3" />
3435
<PackageReference Include="NSubstitute" Version="4.2.2" />
36+
<PackageReference Include="StreamJsonRpc" Version="2.18.48" />
3537
</ItemGroup>
3638
<ItemGroup>
3739
<ProjectReference Include="..\..\Analysis\Ast\Impl\Microsoft.Python.Analysis.csproj" />

src/Parsing/Impl/Microsoft.Python.Parsing.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.Parsing</RootNamespace>
55
<AssemblyName>Microsoft.Python.Parsing</AssemblyName>
66
<PackageId>Microsoft.Python.Parsing</PackageId>
7-
<Version>1.0.3</Version>
7+
<Version>1.0.4</Version>
88
<Authors>Apiiro</Authors>
99
<Company>Apiiro</Company>
1010
<RepositoryUrl>https://github.com/apiiro/python-language-server</RepositoryUrl>

src/Parsing/Test/Microsoft.Python.Parsing.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.Parsing.Tests</RootNamespace>
55
<AssemblyName>Microsoft.Python.Parsing.Tests</AssemblyName>
66
</PropertyGroup>
@@ -28,7 +28,7 @@
2828
</ItemGroup>
2929
<ItemGroup>
3030
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
31-
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
31+
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
3232
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
3333
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
3434
<PackageReference Include="MicroBuild.Core" Version="0.3.0">

src/UnitTests/Core/Impl/UnitTests.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>Microsoft.Python.UnitTests.Core</RootNamespace>
55
<AssemblyName>Microsoft.Python.UnitTests.Core</AssemblyName>
66
</PropertyGroup>

0 commit comments

Comments
 (0)