mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-06-17 12:08:54 +00:00
Move PlayerJsDecoder and PlayerPayload from LME.Shared to LME.Common.Playerjs namespace. Replace ProjectReference with direct Compile includes for source files in AnimeON, Mikai, and NMoonAnime projects. Update all using directives to reference the new namespace across Invoke files. Note: Controller.cs contains a typo (Firts instead of First) that requires correction in a subsequent commit.
17 lines
551 B
XML
17 lines
551 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<OutputType>library</OutputType>
|
|
<IsPackable>true</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Shared">
|
|
<HintPath>..\..\Shared.dll</HintPath>
|
|
</Reference>
|
|
<Compile Include="..\LME.Shared\PlayerJsDecoder.cs" Link="Shared\PlayerJsDecoder.cs" />
|
|
<Compile Include="..\LME.Shared\Models\PlayerPayload.cs" Link="Shared\Models\PlayerPayload.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project> |