AI.Reconstruction.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <Platforms>x64</Platforms>
  5. <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  8. <PlatformTarget>x64</PlatformTarget>
  9. <OutputPath>..\Bin\</OutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  12. <PlatformTarget>x64</PlatformTarget>
  13. <OutputPath>..\Bin\</OutputPath>
  14. </PropertyGroup>
  15. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  16. <Exec Command="xcopy &quot;$(SolutionDir)Bin\$(TargetFramework)\*.dll&quot; &quot;$(SolutionDir)Bin\&quot; /y" />
  17. </Target>
  18. <ItemGroup>
  19. <Reference Include="AI.Common">
  20. <HintPath>..\Depends\AI.Common.dll</HintPath>
  21. </Reference>
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Compile Update="Properties\Resources.Designer.cs">
  25. <DesignTime>True</DesignTime>
  26. <AutoGen>True</AutoGen>
  27. <DependentUpon>Resources.resx</DependentUpon>
  28. </Compile>
  29. </ItemGroup>
  30. <ItemGroup>
  31. <EmbeddedResource Update="Properties\Resources.resx">
  32. <Generator>ResXFileCodeGenerator</Generator>
  33. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  34. </EmbeddedResource>
  35. </ItemGroup>
  36. </Project>