mirror of
https://github.com/91270/MeiamSubtitles.git
synced 2026-02-02 18:19:50 +08:00
29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyVersion>1.0.9.0</AssemblyVersion>
|
|
<FileVersion>1.0.9.0</FileVersion>
|
|
<Version>1.0.9</Version>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<WarningLevel>2</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>..\Release</OutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="Thumb.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Thumb.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="MediaBrowser.Common" Version="4.4.2" />
|
|
<PackageReference Include="MediaBrowser.Server.Core" Version="4.4.2" />
|
|
</ItemGroup>
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="Copy $(TargetDir)$(TargetFileName) $(SolutionDir)$(ConfigurationName)\$(TargetFileName) /y
" />
|
|
</Target>
|
|
</Project> |