Incremented assembly version for new release with improved lazy-loading collection

This commit is contained in:
Markus Ewald 2025-07-30 17:27:39 +02:00
parent b44b2b406b
commit d969811427
2 changed files with 36 additions and 39 deletions

View File

@ -1,38 +1,35 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.0</TargetFramework>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>True</GenerateDocumentationFile> <GenerateDocumentationFile>True</GenerateDocumentationFile>
<AssemblyName>Nuclex.Avalonia</AssemblyName> <AssemblyName>Nuclex.Avalonia</AssemblyName>
<RootNamespace>Nuclex.Avalonia</RootNamespace> <RootNamespace>Nuclex.Avalonia</RootNamespace>
<IntermediateOutputPath>obj\source</IntermediateOutputPath> <IntermediateOutputPath>obj\source</IntermediateOutputPath>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<LangVersion>9.0</LangVersion> <LangVersion>9.0</LangVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Remove="Tests\**" /> <Compile Remove="Tests\**" />
<EmbeddedResource Remove="Tests\**" /> <EmbeddedResource Remove="Tests\**" />
<None Remove="Tests\**" /> <None Remove="Tests\**" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Remove=".git" /> <None Remove=".git" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.1" /> <PackageReference Include="Avalonia" Version="11.3.1" />
<PackageReference Include="MessageBox.Avalonia" Version="3.2.0" /> <PackageReference Include="MessageBox.Avalonia" Version="3.2.0" />
<PackageReference Include="Nullable" Version="1.3.1"> <PackageReference Include="Nuclex.Foundation" Version="1.3.0" />
<PrivateAssets>all</PrivateAssets> <PackageReference Include="Nullable" Version="1.3.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <PrivateAssets>all</PrivateAssets>
</PackageReference> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</ItemGroup> </PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Nuclex.Support\Nuclex.Support (netstandard-2.0).csproj" /> </Project>
</ItemGroup>
</Project>

View File

@ -47,4 +47,4 @@ using System.Runtime.InteropServices;
// Build Number // Build Number
// Revision // Revision
// //
[assembly: AssemblyVersion("1.3.1")] [assembly: AssemblyVersion("1.3.2")]