File tree 8 files changed +9
-10
lines changed
Dotnet.Script.DependencyModel.Nuget
Dotnet.Script.Tests/TestFixtures/WebApi
8 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 8.0.100-rc.2.23502.2 " ,
3
+ "version" : " 8.0.100" ,
4
4
"rollForward" : " latestFeature"
5
5
}
6
6
}
Original file line number Diff line number Diff line change 26
26
<ItemGroup >
27
27
<PackageReference Include =" Gapotchenko.FX" Version =" 2022.2.7" />
28
28
<PackageReference Include =" Gapotchenko.FX.Reflection.Loader" Version =" 2022.2.7" />
29
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 4.4 .0-1 .final" />
29
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 4.8 .0-3 .final" />
30
30
<PackageReference Include =" ReadLine" Version =" 2.0.1" />
31
31
<PackageReference Include =" StrongNamer" Version =" 0.2.5" PrivateAssets =" all" />
32
32
</ItemGroup >
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class InteractiveRunner
26
26
protected ScriptCompiler ScriptCompiler ;
27
27
protected ScriptConsole Console ;
28
28
private readonly string [ ] _packageSources ;
29
- protected CSharpParseOptions ParseOptions = new CSharpParseOptions ( LanguageVersion . Latest , kind : SourceCodeKind . Script ) ;
29
+ protected CSharpParseOptions ParseOptions = new CSharpParseOptions ( LanguageVersion . Preview , kind : SourceCodeKind . Script ) ;
30
30
protected InteractiveCommandProvider InteractiveCommandParser = new InteractiveCommandProvider ( ) ;
31
31
protected string CurrentDirectory = Directory . GetCurrentDirectory ( ) ;
32
32
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ namespace Dotnet.Script.Core
11
11
{
12
12
public class ScriptPublisher
13
13
{
14
- private const string ScriptingVersion = "4.4 .0-1 .final" ;
14
+ private const string ScriptingVersion = "4.8 .0-3 .final" ;
15
15
16
16
private readonly ScriptProjectProvider _scriptProjectProvider ;
17
17
private readonly ScriptEmitter _scriptEmitter ;
Original file line number Diff line number Diff line change 21
21
<Compile Include =" ..\Dotnet.Script.DependencyModel\ProjectSystem\ScriptParserInternal.cs" Link =" ScriptParserInternal.cs" />
22
22
</ItemGroup >
23
23
<ItemGroup >
24
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 4.4 .0-1 .final" />
24
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 4.8 .0-3 .final" />
25
25
</ItemGroup >
26
26
</Project >
Original file line number Diff line number Diff line change 12
12
</PropertyGroup >
13
13
14
14
<ItemGroup >
15
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 4.4 .0-1 .final" />
16
- <PackageReference Include =" System.Collections.Immutable" Version =" 5 .0.0" />
15
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 4.8 .0-3 .final" />
16
+ <PackageReference Include =" System.Collections.Immutable" Version =" 7 .0.0" />
17
17
</ItemGroup >
18
18
19
19
</Project >
Original file line number Diff line number Diff line change 1
1
#r "sdk:Microsoft.NET.Sdk.Web"
2
- #r "nuget : Microsoft . Extensions . DependencyInjection . Abstractions , 8.0 .0 - rc . 2.23479 .6 "
3
2
4
3
using Microsoft . AspNetCore . Builder ;
5
4
Original file line number Diff line number Diff line change 25
25
<AssemblyOriginatorKeyFile >../dotnet-script.snk</AssemblyOriginatorKeyFile >
26
26
</PropertyGroup >
27
27
<ItemGroup >
28
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.4 .0-1 .final" />
28
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.8 .0-3 .final" />
29
29
<PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 4.0.2" />
30
30
<PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 7.0.0"
31
31
Condition =" '$(TargetFramework)' == 'net6.0' or '$(TargetFramework)' == 'net7.0'" />
32
32
33
- <PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 8.0.0-rc.2.23479.6 "
33
+ <PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 8.0.0"
34
34
Condition =" '$(TargetFramework)' == 'net8.0'" />
35
35
</ItemGroup >
36
36
<ItemGroup >
You can’t perform that action at this time.
0 commit comments