Browse Source

Fix bad path

Josh Engebretson 9 years ago
parent
commit
d53436d0eb
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Source/ToolCore/NETTools/NETBuildSystem.cpp

+ 3 - 3
Source/ToolCore/NETTools/NETBuildSystem.cpp

@@ -351,7 +351,7 @@ namespace ToolCore
 
             // close out quote
             compile += "\"";
-                
+
             args.Push(compile);
 
 #else
@@ -459,7 +459,7 @@ namespace ToolCore
         configurations.Push("Release");
 #endif
 
-        AtomicNETCopyAssemblies(context_, project->GetProjectPath() + "Lib/");
+        AtomicNETCopyAssemblies(context_, project->GetProjectPath() + "AtomicNET/Lib/");
 
         String solutionPath = project->GetProjectPath() + "AtomicNET/Solution/" + project->GetProjectSettings()->GetName() + ".sln";
 
@@ -470,7 +470,7 @@ namespace ToolCore
             ProjectSettings* settings = project->GetProjectSettings();
 
             // This path is currently only hit when refreshing for desktop
-            if (settings->GetSupportsAndroid() || settings->GetSupportsIOS()) 
+            if (settings->GetSupportsAndroid() || settings->GetSupportsIOS())
             {
                 // Build the PCL, which will get copied to Resources
                 build->targets_.Push(project->GetProjectSettings()->GetName());