Plugins.Motion.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net48</TargetFramework>
  4. <UseWPF>true</UseWPF>
  5. <Platforms>x64</Platforms>
  6. <PlatformTarget>x64</PlatformTarget>
  7. <LangVersion>latest</LangVersion>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <RootNamespace>Plugins.Motion</RootNamespace>
  10. <AssemblyName>Plugins.Motion</AssemblyName>
  11. </PropertyGroup>
  12. <Target Name="CopyPluginDll" AfterTargets="Build" Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='Release'">
  13. <PropertyGroup>
  14. <PluginDir>$(MSBuildThisFileDirectory)..\..\EXE\win-x64\Plugins\</PluginDir>
  15. </PropertyGroup>
  16. <MakeDir Directories="$(PluginDir)" Condition="!Exists('$(PluginDir)')" />
  17. <Copy SourceFiles="$(TargetPath)" DestinationFolder="$(PluginDir)" SkipUnchangedFiles="true" />
  18. </Target>
  19. <ItemGroup>
  20. <PackageReference Include="PropertyGridLib" Version="1.2.0" />
  21. <PackageReference Include="System.Text.Json" Version="10.0.0" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\..\TeamAAS.Core\TeamAAS.Core\TeamAAS.Core.csproj" />
  25. </ItemGroup>
  26. </Project>