1
0
mirror of https://github.com/XFox111/backbone.git synced 2026-04-22 07:17:59 +03:00
Files
backbone/Backbone.csproj
T
xfox111 3d052e50f4 chore(deps): monthly dependency bump (October 2025) (#10)
* chore(deps): Bump Microsoft.DotNet.ILCompiler from 9.0.8 to 9.0.9 (#8)

---
updated-dependencies:
- dependency-name: Microsoft.DotNet.ILCompiler
  dependency-version: 9.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Microsoft.NET.ILLink.Tasks from 9.0.8 to 9.0.9 (#9)

---
updated-dependencies:
- dependency-name: Microsoft.NET.ILLink.Tasks
  dependency-version: 9.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-04 17:25:23 +05:00

23 lines
672 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<StaticallyLinked>true</StaticallyLinked>
<PublishAot>true</PublishAot>
<StaticExecutable>true</StaticExecutable>
<InvariantGlobalization>true</InvariantGlobalization>
<StripSymbols>true</StripSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="9.0.9" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.9" />
</ItemGroup>
</Project>