|
31 | 31 | <Sut Include="SampleProject.API.dll"/> |
32 | 32 | <!--Do not change the \ to / as it may lead to error on Windows, just change the substring after the \--> |
33 | 33 | <SutPath Include="$(ProjectDir)bin-temp\SampleProject.API.dll"/> |
| 34 | + |
| 35 | + <Application Include="SampleProject.Application.dll"/> |
| 36 | + <ApplicationPath Include="$(ProjectDir)bin-temp\SampleProject.Application.dll"/> |
| 37 | + |
| 38 | + <Domain Include="SampleProject.Domain.dll"/> |
| 39 | + <DomainPath Include="$(ProjectDir)bin-temp\SampleProject.Domain.dll"/> |
| 40 | + |
| 41 | + <Infrastructure Include="SampleProject.Infrastructure.dll"/> |
| 42 | + <InfrastructurePath Include="$(ProjectDir)bin-temp\SampleProject.Infrastructure.dll"/> |
| 43 | + |
34 | 44 | <CurrentRuntimeConfig Include="$(OutputPath)sampleproject-evomaster-runner.runtimeconfig.json"/> |
35 | 45 |
|
36 | 46 | <!-- Don't need to touch these two lines --> |
|
51 | 61 | <Exec Command="cd $(OutputPath) |
52 | 62 | dotnet EvoMaster.Instrumentation.dll @(Sut) @(TempDirectory)"/> |
53 | 63 |
|
| 64 | + <Exec Command="cd $(OutputPath) |
| 65 | + dotnet EvoMaster.Instrumentation.dll @(Application) @(TempDirectory)"/> |
| 66 | + |
| 67 | + <Exec Command="cd $(OutputPath) |
| 68 | + dotnet EvoMaster.Instrumentation.dll @(Domain) @(TempDirectory)"/> |
| 69 | + |
| 70 | + <Exec Command="cd $(OutputPath) |
| 71 | + dotnet EvoMaster.Instrumentation.dll @(Infrastructure) @(TempDirectory)"/> |
| 72 | + |
54 | 73 | </Target> |
55 | 74 |
|
56 | 75 |
|
|
61 | 80 |
|
62 | 81 | <Exec Command="cp @(SutPath) $(OutputPath)" Condition="$(OS.Contains('Unix'))"/> |
63 | 82 | <Exec Command="copy @(SutPath) $(OutputPath)" Condition="$(OS.Contains('Windows'))"/> |
| 83 | + |
| 84 | + <Exec Command="cp @(ApplicationPath) $(OutputPath)" Condition="$(OS.Contains('Unix'))"/> |
| 85 | + <Exec Command="copy @(ApplicationPath) $(OutputPath)" Condition="$(OS.Contains('Windows'))"/> |
| 86 | + |
| 87 | + <Exec Command="cp @(DomainPath) $(OutputPath)" Condition="$(OS.Contains('Unix'))"/> |
| 88 | + <Exec Command="copy @(DomainPath) $(OutputPath)" Condition="$(OS.Contains('Windows'))"/> |
| 89 | + |
| 90 | + <Exec Command="cp @(InfrastructurePath) $(OutputPath)" Condition="$(OS.Contains('Unix'))"/> |
| 91 | + <Exec Command="copy @(InfrastructurePath) $(OutputPath)" Condition="$(OS.Contains('Windows'))"/> |
64 | 92 | </Target> |
65 | 93 |
|
66 | 94 | </Project> |
0 commit comments