Windows - could not load file or assembly 'AppWarp_WP7_SDK, Version=1.1.0.0,

0 votes

I'm using C# to create a windows forms aplication with appwarp.

I've added the .dll file as a reference and I have no compile errors.

My code

 

[code]using System;

using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using com.shephertz.app42.gaming.multiplayer.client;
 
namespace Word_Puzzle_Level_Creator
{
    public partial class Form1 : Form
    {
        private const String CodApi = "...the api key.";
        private const String CodSecret = "...the secret key";
        private String nume_random;
        private WarpClient warpClient;
        public Form1()
        {
            InitializeComponent();
        }
 
        private void Conectare()
        {
            WarpClient.initialize(CodApi, CodSecret);
            warpClient = WarpClient.GetInstance();
            nume_random = new Random().NextDouble()+".";
            warpClient.Connect(nume_random);
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            Conectare();
        }
    }
}
[/code]

 

I'm getting the runtime error

Could not load file or assembly 'AppWarp_WP7_SDK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.

 

What should I do?

asked Jul 19, 2014 in AppWarp by paul.bv96 (31 points)

1 Answer

0 votes
This could be because you are trying to buid a Windows app using a Windows Phone library.
answered Jul 20, 2014 by dhruvc (1,099 points)
Download Widgets
Welcome to ShepHertz Product line forum, where you can ask questions and receive answers from the community. You can also reach out to us on support@shephertz.com
...