versions updated
This commit is contained in:
parent
c4029cd546
commit
d7a699f8d1
@ -2,7 +2,7 @@
|
||||
<PropertyGroup>
|
||||
<!--package info-->
|
||||
<PackageId>DTLib.Dtsod</PackageId>
|
||||
<Version>1.1.1</Version>
|
||||
<Version>1.1.2</Version>
|
||||
<Authors>Timerix</Authors>
|
||||
<Description>Definitely not json</Description>
|
||||
<RepositoryType>GIT</RepositoryType>
|
||||
@ -14,7 +14,7 @@
|
||||
<TargetFrameworks>net6.0;netstandard2.0;net48</TargetFrameworks>
|
||||
<DebugType>embedded</DebugType>
|
||||
<!--language features-->
|
||||
<LangVersion>10</LangVersion>
|
||||
<LangVersion>11</LangVersion>
|
||||
<Nullable>disable</Nullable>
|
||||
<ImplicitUsings>disable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
@ -33,17 +33,11 @@
|
||||
<ProjectReference Include="..\DTLib\DTLib.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(Configuration)' != 'Debug' ">
|
||||
<PackageReference Include="DTLib" Version="1.1.2" />
|
||||
<PackageReference Include="DTLib" Version="1.1.3" />
|
||||
</ItemGroup>
|
||||
|
||||
<!--project files-->
|
||||
<ItemGroup>
|
||||
<Content Include="runtimes\**\*">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
<Pack>true</Pack>
|
||||
<PackagePath>runtimes/</PackagePath>
|
||||
</Content>
|
||||
<Compile Remove="Experimental/**/*" />
|
||||
<None Include="Experimental/**/*" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
@ -252,7 +252,7 @@ public class DtsodV30 : DtsodDict<string, dynamic>, IDtsod
|
||||
return output;
|
||||
}
|
||||
|
||||
public override void Append(ICollection<KeyValuePair<string, dynamic>> anotherDtsod) => base.Append(anotherDtsod);//UpdateLazy();
|
||||
// public override void Append(ICollection<KeyValuePair<string, dynamic>> anotherDtsod) => base.Append(anotherDtsod);//UpdateLazy();
|
||||
|
||||
public override void Add(string key, dynamic value) => base.Add(key, (object)value);//UpdateLazy();
|
||||
|
||||
|
||||
@ -41,7 +41,7 @@ public class TypeHelper
|
||||
{ typeof(decimal), "decimal" }
|
||||
};
|
||||
|
||||
private DtsodDict<string, Type> ST_extensions = new()
|
||||
private Dictionary<string, Type> ST_extensions = new()
|
||||
{
|
||||
{ "List<bool>", typeof(List<bool>) },
|
||||
{ "List<char>", typeof(List<char>) },
|
||||
@ -58,7 +58,7 @@ public class TypeHelper
|
||||
{ "List<double>", typeof(List<double>) },
|
||||
{ "List<decimal>", typeof(List<decimal>) },
|
||||
};
|
||||
private DtsodDict<Type, string> TS_extensions = new()
|
||||
private Dictionary<Type, string> TS_extensions = new()
|
||||
{
|
||||
{ typeof(List<bool>), "List<bool>" },
|
||||
{ typeof(List<char>), "List<char>" },
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<PropertyGroup>
|
||||
<!--package info-->
|
||||
<PackageId>DTLib.Logging</PackageId>
|
||||
<Version>1.1.1</Version>
|
||||
<Version>1.1.2</Version>
|
||||
<Authors>Timerix</Authors>
|
||||
<Description>Loggers with dependency injection</Description>
|
||||
<RepositoryType>GIT</RepositoryType>
|
||||
@ -30,7 +30,7 @@
|
||||
<ProjectReference Include="..\DTLib.Ben.Demystifier\DTLib.Ben.Demystifier.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(Configuration)' != 'Debug' ">
|
||||
<PackageReference Include="DTLib" Version="1.1.2" />
|
||||
<PackageReference Include="DTLib" Version="1.1.3" />
|
||||
<PackageReference Include="DTLib.Ben.Demystifier" Version="1.0.2" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<PropertyGroup>
|
||||
<!--package info-->
|
||||
<PackageId>DTLib.Network</PackageId>
|
||||
<Version>1.1.1</Version>
|
||||
<Version>1.1.2</Version>
|
||||
<Authors>Timerix</Authors>
|
||||
<Description>Some sick network protocols</Description>
|
||||
<RepositoryType>GIT</RepositoryType>
|
||||
@ -32,6 +32,6 @@
|
||||
<ProjectReference Include="..\DTLib.Dtsod\DTLib.Dtsod.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(Configuration)' != 'Debug' ">
|
||||
<PackageReference Include="DTLib.Dtsod" Version="1.1.1" />
|
||||
<PackageReference Include="DTLib.Dtsod" Version="1.1.2" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
@ -27,10 +27,10 @@
|
||||
<ProjectReference Include="..\DTLib\DTLib.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(Configuration)' != 'Debug' ">
|
||||
<PackageReference Include="DTLib" Version="1.1.2" />
|
||||
<PackageReference Include="DTLib.Dtsod" Version="1.1.1" />
|
||||
<PackageReference Include="DTLib.Network" Version="1.1.1" />
|
||||
<PackageReference Include="DTLib.Logging" Version="1.1.1" />
|
||||
<PackageReference Include="DTLib" Version="1.1.3" />
|
||||
<PackageReference Include="DTLib.Dtsod" Version="1.1.2" />
|
||||
<PackageReference Include="DTLib.Network" Version="1.1.2" />
|
||||
<PackageReference Include="DTLib.Logging" Version="1.1.2" />
|
||||
</ItemGroup>
|
||||
|
||||
<!--project files-->
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<PropertyGroup>
|
||||
<!--package info-->
|
||||
<PackageId>DTLib</PackageId>
|
||||
<Version>1.1.2</Version>
|
||||
<Version>1.1.3</Version>
|
||||
<Authors>Timerix</Authors>
|
||||
<Description>Library for all my C# projects</Description>
|
||||
<RepositoryType>GIT</RepositoryType>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user