-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathToSic.Imageflow.Dnn.csproj
More file actions
96 lines (95 loc) · 4.7 KB
/
ToSic.Imageflow.Dnn.csproj
File metadata and controls
96 lines (95 loc) · 4.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{37FAEC2A-9ED5-43B9-BDC5-3F26CEEC52FF}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ToSic.Imageflow.Dnn</RootNamespace>
<AssemblyName>ToSic.Imageflow.Dnn</AssemblyName>
<TargetFramework>net472</TargetFramework>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<OutputPath>bin\</OutputPath>
<DocumentationFile>bin\ToSic.Imageflow.Dnn.xml</DocumentationFile>
<WarningLevel>4</WarningLevel>
<Deterministic>true</Deterministic>
<FileAlignment>512</FileAlignment>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<!-- Don't generate assembly properties from this XML which should come from the core file, like
version - these lines must be in sync in all ToSic.Eav.*.csproj files -->
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<!-- end: Don't generate... -->
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Build\**" />
<Compile Remove="InstallPackages\**" />
<EmbeddedResource Remove="Build\**" />
<EmbeddedResource Remove="InstallPackages\**" />
<None Remove="Build\**" />
<None Remove="InstallPackages\**" />
</ItemGroup>
<ItemGroup>
<Content Include="icon.png" />
<Content Include="License.txt" />
<Content Include="ReleaseNotes.txt" />
</ItemGroup>
<ItemGroup>
<None Include="ToSic.Imageflow.Dnn.dnn" />
<None Include="ToSic.Imageflow.Dnn_Symbols.dnn" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Numerics" />
<Reference Include="System.Web" />
</ItemGroup>
<!-- NuGet Packages -->
<ItemGroup>
<PackageReference Include="DotNetNuke.Web" Version="9.11.0" ExcludeAssets="runtime" />
<PackageReference Include="Imageflow.Net" Version="0.14.0-rc01" />
<PackageReference Include="Imageflow.NativeRuntime.win-arm64" Version="2.1.0-rc11" GeneratePathProperty="true" />
<PackageReference Include="Imageflow.NativeRuntime.win-x86" Version="2.1.0-rc11" GeneratePathProperty="true" />
<PackageReference Include="Imageflow.NativeRuntime.win-x86_64" Version="2.1.0-rc11" GeneratePathProperty="true" />
<PackageReference Include="Imazen.HybridCache" Version="0.8.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />
<!-- update to DNN 10.0.0 dependecie -->
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
</ItemGroup>
<!-- Build and Post-build events -->
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="Build/Library.Build" />
<PropertyGroup>
<PostBuildEvent>
REM Copy native runtimes and dependencies
robocopy $(PkgImageflow_NativeRuntime_win-arm64)\runtimes $(Dev2sxcDnnRoot)runtimes /E
robocopy $(PkgImageflow_NativeRuntime_win-x86)\runtimes $(Dev2sxcDnnRoot)runtimes /E
robocopy $(PkgImageflow_NativeRuntime_win-x86_64)\runtimes $(Dev2sxcDnnRoot)runtimes /E
REM robocopy $(Dev2sxcDnnRoot)bin Imageflow.*
REM robocopy $(Dev2sxcDnnRoot)bin Imazen.*
REM robocopy $(Dev2sxcDnnRoot)bin ToSic.Imageflow.Dnn.*
REM robocopy $(Dev2sxcDnnRoot)bin\Imageflow Microsoft.*
REM robocopy $(Dev2sxcDnnRoot)bin\Imageflow System.*
cd $(ProjectDir)bin
robocopy .\ "..\..\Website\bin" ToSic.Imageflow.Dnn.*
exit 0
</PostBuildEvent>
</PropertyGroup>
</Project>