From 75412594a54e3fae98dd7ebb1e9a28d3035a28e2 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 19 Sep 2015 09:47:13 +0200 Subject: [PATCH] Added example project to reflect the current development state. --- CUE.NET.csproj | 4 +- CUE.NET.sln | 15 +++ Examples/SimpleDevTest/App.config | 6 ++ Examples/SimpleDevTest/Program.cs | 46 ++++++++++ .../SimpleDevTest/Properties/AssemblyInfo.cs | 35 +++++++ Examples/SimpleDevTest/SimpleDevTest.csproj | 92 +++++++++++++++++++ 6 files changed, 196 insertions(+), 2 deletions(-) create mode 100644 Examples/SimpleDevTest/App.config create mode 100644 Examples/SimpleDevTest/Program.cs create mode 100644 Examples/SimpleDevTest/Properties/AssemblyInfo.cs create mode 100644 Examples/SimpleDevTest/SimpleDevTest.csproj diff --git a/CUE.NET.csproj b/CUE.NET.csproj index 30cd022..433b80a 100644 --- a/CUE.NET.csproj +++ b/CUE.NET.csproj @@ -93,8 +93,8 @@ - if $(PlatformName) == x86 copy "$(ProjectDir)libs\CUESDK_2013.dll" "$(TargetDir)CUESDK_2013.dll" -if $(PlatformName) == x64 copy "$(ProjectDir)libs\CUESDK.x64_2013.dll" "$(TargetDir)CUESDK.x64_2013.dll" + if $(PlatformName) == x86 copy "$(SolutionDir)libs\CUESDK_2013.dll" "$(TargetDir)CUESDK_2013.dll" +if $(PlatformName) == x64 copy "$(SolutionDir)libs\CUESDK.x64_2013.dll" "$(TargetDir)CUESDK.x64_2013.dll" + \ No newline at end of file