1
Bugs and Issues / Re: Copy/Paste and crash issues
« on: March 01, 2018, 06:26:13 am »
The diagram was saved and saved again but same results. Other ideas?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using EA;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
EA.Repository repo = new EA.Repository();
EA.Package package = null;
String mySourceFile = "C:\\TEMP\\MyFirst.eap";
String myTargetFile = "C:\\TEMP\\TargetFile.eap";
String myLogFile = "C:\\TEMP\\MyFirstTransfer.log";
repo.GetProjectInterface().ProjectTransfer(mySourceFile, myTargetFile, myLogFile);
}
}
}