A
Andrus
I have 120 .cs files in single directory containig POCO s like:
Entity1.cs:
namespace Model {
public class Entity1 {
string property1;
public virtual string Property1 {
get { return property1; }
set { property1 = value; }
}
}
}
Entity2.cs:
namespace Model {
public class Entity2 {
string property2;
public virtual string Property2 {
get { return property2; }
set { property2 = value; }
}
}
}
I need to generate Model.dll assembly from those files from my application.
Where to find sample code which compiles cs files and creates dll file ?
Andrus.
Entity1.cs:
namespace Model {
public class Entity1 {
string property1;
public virtual string Property1 {
get { return property1; }
set { property1 = value; }
}
}
}
Entity2.cs:
namespace Model {
public class Entity2 {
string property2;
public virtual string Property2 {
get { return property2; }
set { property2 = value; }
}
}
}
I need to generate Model.dll assembly from those files from my application.
Where to find sample code which compiles cs files and creates dll file ?
Andrus.