forked from Azure-Samples/functions-dotnet-codercards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoderCards.csproj
55 lines (47 loc) · 2.05 KB
/
CoderCards.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net461</TargetFramework>
<Platforms>AnyCPU;x86</Platforms>
<RuntimeIdentifiers>win7-x86;</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<Compile Remove="ImageHelpers.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="assets\angry.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="assets\happy.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="assets\neutral.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="assets\surprised.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" Version="1.0.4" />
<PackageReference Include="Microsoft.CSharp" Version="4.3.0" />
<PackageReference Include="Microsoft.ProjectOxford.Emotion" Version="1.0.336" />
<PackageReference Include="Microsoft.ProjectOxford.Common" Version="1.0.324" />
<PackageReference Include="SkiaSharp" Version="1.59.1" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" version="1.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="proxies.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy /y %USERPROFILE%\.nuget\packages\skiasharp\1.59.1\build\net45\..\..\runtimes\win7-x86\native\libSkiaSharp.dll $(TargetDir)bin" />
<Exec Command="xcopy /y %USERPROFILE%\.nuget\packages\skiasharp\1.59.1\build\net45\..\..\runtimes\osx\native\libSkiaSharp.dylib $(TargetDir)bin" />
</Target>
</Project>