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 5bd251897d chore(deps): monthly dependency bump (September 2025) (#7)
* chore(deps): Bump Microsoft.NET.ILLink.Tasks from 9.0.7 to 9.0.8 (#6)

---
updated-dependencies:
- dependency-name: Microsoft.NET.ILLink.Tasks
  dependency-version: 9.0.8
  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>

* chore(deps): Bump Microsoft.DotNet.ILCompiler from 9.0.7 to 9.0.8 (#5)

---
updated-dependencies:
- dependency-name: Microsoft.DotNet.ILCompiler
  dependency-version: 9.0.8
  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>
Co-authored-by: Eugene Fox <eugene@xfox111.net>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 12:59:45 +03: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.8" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.8" />
</ItemGroup>
</Project>