mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
20 lines
726 B
XML
20 lines
726 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net10.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<Version>1.0.0</Version>
|
||
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||
|
|
<LanMountainPluginPackageVersion>$(Version)</LanMountainPluginPackageVersion>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="LanMountainDesktop.PluginSdk" Version="__PLUGIN_SDK_VERSION__" ExcludeAssets="runtime" PrivateAssets="all" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<None Update="plugin.json" CopyToOutputDirectory="PreserveNewest" />
|
||
|
|
<None Include="Localization\*.json" CopyToOutputDirectory="PreserveNewest" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|