Posts by Eric Cordeiro • 81 points
7 posts
-
0
votes1
answer10
viewsA: How do I include a file needed to perform a test in the context of running Live Unit Testing
Diegosantos brought light to the problem. Just change the "Copy to Output Directory" property of the file to "Copy Aways". Valeu Diego!
-
0
votes1
answer10
viewsQ: How do I include a file needed to perform a test in the context of running Live Unit Testing
Good afternoon to you all. My unit tests depend on a configuration file to pass. However, when tests run through Live Unit Testing (LUT) they fail by not finding such a file. Currently the ULT runs…
-
0
votes1
answer105
viewsA: How to avoid having to refer to the RU?
Finally, I arrived at a solution that satisfies the scenario. The cause Since Entity Framework 6.x depends on a configuration section in . config for setting the access provider and this in turn is…
-
0
votes1
answer105
viewsQ: How to avoid having to refer to the RU?
Hello, everyone. I basically have a data access layer with EF6 and a presentation layer (Asp.Net Webapi). I am unable to make it work without the presentation layer referring to EF. Does anyone know…
-
0
votes1
answer114
viewsA: Is it a problem with my architecture?
RESOLVED!! I managed to solve my two questions with a single solution. According to the answer obtained by another post of mine (It is possible to restrict who can use the public classes of an…
-
4
votes1
answer44
viewsQ: Is it possible to restrict who can use the public classes of an Assembly?
The scenario is as follows: I have a AssemblyProtegido.dll written in . NET that contains public classes. I wish only specific assemblies could consume such classes. Assemplyprotegido.csproj public…
-
3
votes1
answer114
viewsQ: Is it a problem with my architecture?
I’ve been a software developer for a long time, but I’m always looking to learn "different ways of doing things". I am currently working on a new project and decided to base the architecture on…