aipsvr.csproj 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <OutputPath>..\Bin\aipsvr</OutputPath>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <OutputPath>..\Bin\aipsvr</OutputPath>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <EmbeddedResource Include="Resources\DeveloperService\index.html" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <PackageReference Include="Hprose.RPC" Version="3.0.20" />
  18. <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
  19. <PackageReference Include="MongoDB.Driver" Version="2.11.4" />
  20. <PackageReference Include="SixLabors.ImageSharp" Version="1.0.2" />
  21. <PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
  22. <PackageReference Include="System.Text.Json" Version="6.0.0" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\AIPlatform.Protocol\AIPlatform.Protocol.csproj" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Reference Include="JsonRpcLite">
  29. <HintPath>..\packages\JsonRpcLite.dll</HintPath>
  30. </Reference>
  31. <Reference Include="VideoFrameSimilarityUtilsLib">
  32. <HintPath>..\packages\VideoFrameSimilarity\VideoFrameSimilarityUtilsLib.dll</HintPath>
  33. </Reference>
  34. <Reference Include="WingInterfaceLibrary">
  35. <HintPath>..\packages\WingInterfaceLibrary.dll</HintPath>
  36. </Reference>
  37. </ItemGroup>
  38. <ItemGroup>
  39. <None Update="mongod.exe">
  40. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  41. </None>
  42. <None Update="TaxConfig.json">
  43. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  44. </None>
  45. </ItemGroup>
  46. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  47. <Exec Command="Copy /Y &quot;$(OutputPath)..\..\packages\VideoFrameSimilarity\*.*&quot; &quot;$(OutputPath)\*.*&quot;" />
  48. </Target>
  49. </Project>