Merge branch 'master' into v4.0.0
This commit is contained in:
commit
4fc9c0f75f
5 changed files with 43 additions and 17 deletions
18
ISSUE_TEMPLATE.txt
Normal file
18
ISSUE_TEMPLATE.txt
Normal file
|
@ -0,0 +1,18 @@
|
|||
For questions or issues related to using one of Affectiva's SDKs, please use StackOverflow with the
|
||||
"affdex-sdk" tag. The Affectiva team monitors StackOverflow for these questions and will respond
|
||||
there. This approach also helps other developers with the same questions or problems find
|
||||
solutions more quickly.
|
||||
|
||||
https://stackoverflow.com/questions/tagged/affdex-sdk
|
||||
|
||||
|
||||
For more general discussion about our SDKs, please use our SDK forum:
|
||||
|
||||
https://discuss.affectiva.com/c/emotion-sdk
|
||||
|
||||
|
||||
If you have a question or problem directly related to the samples in this repo (not with the SDK
|
||||
itself), please proceed to create an issue here. If you create an issue here that is not
|
||||
related to this repo, we will ask you to move it to one of the locations above, as this helps
|
||||
ensure it gets to the right people and is addressed most effectively. Thanks for your
|
||||
cooperation.
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.40629.0
|
||||
VisualStudioVersion = 12.0.21005.1
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opencv-webcam-demo", "opencv-webcam-demo\opencv-webcam-demo.vcxproj", "{8DCDC209-C25D-4C61-B2AC-2FBA1775DD6B}"
|
||||
EndProject
|
||||
|
@ -13,7 +13,9 @@ Global
|
|||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{8DCDC209-C25D-4C61-B2AC-2FBA1775DD6B}.Release|x64.ActiveCfg = Release|x64
|
||||
{8DCDC209-C25D-4C61-B2AC-2FBA1775DD6B}.Release|x64.Build.0 = Release|x64
|
||||
{5D5E4401-09DE-40D3-9E29-AFC4F2EF2C80}.Release|x64.ActiveCfg = Release|x64
|
||||
{5D5E4401-09DE-40D3-9E29-AFC4F2EF2C80}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
16
appveyor.yml
16
appveyor.yml
|
@ -2,21 +2,27 @@ version: 1.0.{build}
|
|||
image:
|
||||
- Visual Studio 2013
|
||||
- Visual Studio 2015
|
||||
configuration: Release
|
||||
platform: x64
|
||||
before_build:
|
||||
- cmd: >-
|
||||
appveyor DownloadFile https://download.affectiva.com/windows/AffdexSDK-3.1-368-win64.exe -FileName AffdexSDK-3.1-368-win64.exe
|
||||
appveyor DownloadFile https://download.affectiva.com/windows/AffdexSDK-3.4.1-575-win64.exe -FileName AffdexSDK-win64.exe
|
||||
|
||||
AffdexSDK-3.1-368-win64.exe /S
|
||||
AffdexSDK-win64.exe /S
|
||||
|
||||
nuget restore affdex-win-samples.sln
|
||||
|
||||
build:
|
||||
project: affdex-win-samples.sln
|
||||
parallel: true
|
||||
verbosity: detailed
|
||||
artifacts:
|
||||
- path: '\x64\Release'
|
||||
- path: 'x64\Release'
|
||||
deploy:
|
||||
- provider: GitHub
|
||||
release: 3.1
|
||||
release: 3.4
|
||||
artifact: 'x64\Release.zip'
|
||||
auth_token:
|
||||
secure: sjCE8t4b8ME8j2D6e0kRpNib8STOljgGVPdexj4n0gXU/nYxFkdaI9GXRukRHri5
|
||||
artifact: Release.zip
|
||||
on:
|
||||
branch: master # release from master branch only
|
||||
|
|
Loading…
Reference in a new issue