AssetRipper_AssetRipper/Source/Directory.Build.props
ds5678 9e60805e1a Bump project version to 1.3.4
Updated the `<Version>` property in `Directory.Build.props`
from `1.3.3` to `1.3.4`. This version increment prepares
the project for a new release, ensuring the updated version
is reflected in the build and associated outputs.
2025-09-21 21:57:58 -07:00

26 lines
809 B
XML

<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<IsAotCompatible>true</IsAotCompatible>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<Version>1.3.4</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<Copyright>Copyright © ds5678</Copyright>
<Authors>ds5678</Authors>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Include="System.IO" />
<Using Include="System.Linq" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
</ItemGroup>
</Project>