Skip to content

Commit

Permalink
фиксы под NET 9
Browse files Browse the repository at this point in the history
  • Loading branch information
VigersRay committed Jan 14, 2025
1 parent 4a8dcf1 commit 642b571
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 13 deletions.
6 changes: 0 additions & 6 deletions Content.Server/Vampire/VampireSystem.Abilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
using Content.Server.Flash.Components;
using Content.Server.Speech.Components;
using Content.Server.Storage.Components;
using Content.Server.Store.Components;
using Content.Shared.Actions;
using Content.Server.Objectives.Components;
using Content.Shared.Bed.Sleep;
using Content.Shared.Body.Components;
Expand All @@ -16,7 +14,6 @@
using Content.Shared.Database;
using Content.Shared.DoAfter;
using Content.Shared.FixedPoint;
using Content.Shared.Flash;
using Content.Shared.Humanoid;
using Content.Shared.Interaction;
using Content.Shared.Mobs;
Expand All @@ -25,13 +22,10 @@
using Content.Shared.Polymorph;
using Content.Shared.Prying.Components;
using Content.Shared.Stealth.Components;
using Content.Shared.Store.Events;
using Content.Shared.Store.Components;
using Content.Shared.Stunnable;
using Content.Shared.Vampire;
using Content.Shared.Vampire.Components;
using Content.Shared.Weapons.Melee;
using FastAccessors;
using Robust.Shared.Audio;
using Robust.Shared.Containers;
using Robust.Shared.Utility;
Expand Down
2 changes: 1 addition & 1 deletion Content.Shared/_Sunrise/Disease/VaccinatorComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public sealed partial class VaccinatorComponent : Component
[DataField, AutoNetworkedField]
public SoundSpecifier? MixingSound;

[DataField]
[ViewVariables]
public Entity<AudioComponent>? MixingSoundEntity;

/// <summary>
Expand Down
6 changes: 3 additions & 3 deletions Content.Shared/_Sunrise/Footprints/FootprintsSerializables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed partial class FootprintComponent : Component
/// <summary>
/// Reference to the solution component containing reagents
/// </summary>
[DataField]
[ViewVariables]
public Entity<SolutionComponent>? SolutionContainer;

[DataField]
Expand Down Expand Up @@ -145,13 +145,13 @@ public sealed partial class FootprintEmitterComponent : Component
[ViewVariables(VVAccess.ReadOnly), DataField]
public string FootsSolutionName = "foots";

[ViewVariables(VVAccess.ReadOnly), DataField]
[ViewVariables]
public Entity<SolutionComponent>? FootsSolution;

[ViewVariables(VVAccess.ReadOnly), DataField]
public string BodySurfaceSolutionName = "body_surface";

[ViewVariables(VVAccess.ReadOnly), DataField]
[ViewVariables]
public Entity<SolutionComponent>? BodySurfaceSolution;

[ViewVariables(VVAccess.ReadWrite)]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down

0 comments on commit 642b571

Please sign in to comment.