File tree 5 files changed +10
-10
lines changed
Dotnet.Script.DependencyModel
Dotnet.Script.DependencyModel.Nuget
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 2
2
<Project Sdk =" Microsoft.NET.Sdk" >
3
3
<PropertyGroup >
4
4
<Description >A cross platform library allowing you to run C# (CSX) scripts with support for debugging and inline NuGet packages. Based on Roslyn.</Description >
5
- <VersionPrefix >1.0.0 </VersionPrefix >
5
+ <VersionPrefix >1.0.1 </VersionPrefix >
6
6
<Authors >filipw</Authors >
7
7
<TargetFrameworks >netstandard2.0</TargetFrameworks >
8
8
<AssemblyName >Dotnet.Script.Core</AssemblyName >
21
21
<EmbeddedResource Include =" **/*.template" />
22
22
</ItemGroup >
23
23
<ItemGroup >
24
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 3.7.0 " />
24
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 3.8.0-5.final " />
25
25
<PackageReference Include =" Newtonsoft.Json" Version =" 12.0.3" />
26
26
<PackageReference Include =" ReadLine" Version =" 2.0.1" />
27
- <PackageReference Include =" System.Collections.Immutable" Version =" 1.5 .0" />
28
- <PackageReference Include =" System.Reflection.Metadata" Version =" 1.6 .0" />
27
+ <PackageReference Include =" System.Collections.Immutable" Version =" 5.0 .0" />
28
+ <PackageReference Include =" System.Reflection.Metadata" Version =" 5.0 .0" />
29
29
<PackageReference Include =" System.ValueTuple" Version =" 4.5.0" />
30
30
<!-- The following references are just quick fixes for issue #166 and issue #268
31
31
We need to figure out why we can't load these via the dependency context.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ namespace Dotnet.Script.Core
13
13
{
14
14
public class ScriptPublisher
15
15
{
16
- private const string ScriptingVersion = "3.7.0 " ;
16
+ private const string ScriptingVersion = "3.8.0-5.final " ;
17
17
18
18
private readonly ScriptProjectProvider _scriptProjectProvider ;
19
19
private readonly ScriptEmitter _scriptEmitter ;
Original file line number Diff line number Diff line change 8
8
<RepositoryUrl >https://github.com/filipw/dotnet-script.git</RepositoryUrl >
9
9
<RepositoryType >git</RepositoryType >
10
10
<PackageTags >script;csx;csharp;roslyn;nuget</PackageTags >
11
- <Version >1.0.0 </Version >
11
+ <Version >1.0.1 </Version >
12
12
<Description >A MetadataReferenceResolver that allows inline nuget references to be specified in script(csx) files.</Description >
13
13
<Authors >dotnet-script</Authors >
14
14
<Company >dotnet-script</Company >
19
19
<Compile Include =" ..\Dotnet.Script.DependencyModel\ProjectSystem\ScriptParserInternal.cs" Link =" ScriptParserInternal.cs" />
20
20
</ItemGroup >
21
21
<ItemGroup >
22
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 3.7.0 " />
22
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 3.8.0-5.final " />
23
23
</ItemGroup >
24
24
</Project >
Original file line number Diff line number Diff line change 11
11
<RepositoryUrl >https://github.com/filipw/dotnet-script.git</RepositoryUrl >
12
12
<RepositoryType >git</RepositoryType >
13
13
<PackageTags >script;csx;csharp;roslyn;omnisharp</PackageTags >
14
- <Version >1.0.0 </Version >
14
+ <Version >1.0.1 </Version >
15
15
<LangVersion >latest</LangVersion >
16
16
</PropertyGroup >
17
17
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<Description >Dotnet CLI tool allowing you to run C# (CSX) scripts.</Description >
4
- <VersionPrefix >1.0.0 </VersionPrefix >
4
+ <VersionPrefix >1.0.1 </VersionPrefix >
5
5
<Authors >filipw</Authors >
6
6
<PackageId >Dotnet.Script</PackageId >
7
7
<TargetFrameworks >net5.0;netcoreapp2.1;netcoreapp3.1</TargetFrameworks >
22
22
<LangVersion >latest</LangVersion >
23
23
</PropertyGroup >
24
24
<ItemGroup >
25
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 3.7.0 " />
25
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 3.8.0-5.final " />
26
26
<PackageReference Include =" McMaster.Extensions.CommandLineUtils" Version =" 2.2.5" />
27
27
<PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 3.1.6" />
28
28
</ItemGroup >
You can’t perform that action at this time.
0 commit comments