File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net8 .0</TargetFramework >
5+ <TargetFramework >net9 .0</TargetFramework >
66 <ImplicitUsings >enable</ImplicitUsings >
77 <Nullable >enable</Nullable >
88 </PropertyGroup >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
77
1616 </PackageReference >
1717 <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.12.0" />
1818 <PackageReference Include =" xunit" Version =" 2.9.3" />
19- <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.1 " >
19+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2 " >
2020 <PrivateAssets >all</PrivateAssets >
2121 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
2222 </PackageReference >
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ public class STMVariable<T> : ISTMVariable<T>
1212 private T _value ;
1313 private int _version ;
1414
15+ /// <summary>
16+ /// Initializes a new instance of the <see cref="STMVariable{T}"/> class with the specified initial value.
17+ /// </summary>
18+ /// <param name="initialValue"></param>
1519 public STMVariable ( T initialValue )
1620 {
1721 _value = initialValue ;
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
77 <Title >STMSharp</Title >
You can’t perform that action at this time.
0 commit comments