Skip to content

Commit

Permalink
updating Microsoft.CodeAnalysis dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Jan 15, 2024
1 parent b686858 commit 949eb63
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<VersionPrefix>3.4.0</VersionPrefix>
<VersionPrefix>3.4.1</VersionPrefix>
<LangVersion>10.0</LangVersion>
<Authors>Jeremy D. Miller;Babu Annamalai;Oskar Dudycz;Joona-Pekka Kokko</Authors>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
Expand Down
1 change: 1 addition & 0 deletions src/CodegenTests/Samples/Codegen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ namespace Generated
{
public class AddOperator : IOperation
{
// Some comment
public int Calculate(int one, int two)
{
return one + two;
Expand Down
2 changes: 2 additions & 0 deletions src/JasperFx.CodeGeneration/CodeFormatter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ public static class CodeFormatter
{
public static string Write(object? value)
{
// TODO -- add Guid, int, double, long, bool

if (value == null)
{
return "null";
Expand Down
1 change: 0 additions & 1 deletion src/JasperFx.CodeGeneration/Model/Variable.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
Expand Down
6 changes: 3 additions & 3 deletions src/JasperFx.RuntimeCompiler/JasperFx.RuntimeCompiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.7.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Scripting" Version="4.7.0" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Scripting" Version="4.8.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="[6.0.0, 9.0.0)" />
</ItemGroup>

Expand Down

0 comments on commit 949eb63

Please sign in to comment.