Greetings!
I am trying to understand the codebase. Admittedly, I am not a C# expert, so I apologize if this turns out to be a stupid question.
I am trying to locate the source for the "Seed_Dispersal" dependency here :
|
<Reference Include="Seed_Dispersal"> |
|
<HintPath>lib\Seed_Dispersal.dll</HintPath> |
|
</Reference> |
But I do not see any specific .csproj with that artifact output (namely "Seed_Dispersal").
I looked over all the repos in the Landis foundation for "Seed_Dispersal" and could not find any source (namespace). Only being used/referenced to, but never defined or declared.
I am aware of the file density-seeding/Seed Dispersal.cs but there are two issues:
- There still needs to be an explicit artifact compiling that file to produce "Seed_Dispersal.dll", especially since it relies on other Landis namespaces.
- The type "Seed_Dispersal.Map" referenced in
demographic-seeding here
|
private Seed_Dispersal.Map seedingData; |
does not exist in the file density-seeding/Seed Dispersal.cs (while DensitySeedMap does) , so I am still not sure if Seed_Dispersal.dll is just density-seeding/Seed Dispersal.cs.
Could you point me to the source of this Seed_Dispersal.dll ?
Thank you very much for your efforts, and I apologize for the potentially dumb question in advance!
-Bahaa
Greetings!
I am trying to understand the codebase. Admittedly, I am not a C# expert, so I apologize if this turns out to be a stupid question.
I am trying to locate the source for the "Seed_Dispersal" dependency here :
Library-Succession/src/library-succession.csproj
Lines 55 to 57 in fd0e24a
But I do not see any specific .csproj with that artifact output (namely "Seed_Dispersal").
I looked over all the repos in the Landis foundation for "Seed_Dispersal" and could not find any source (namespace). Only being used/referenced to, but never defined or declared.
I am aware of the file
density-seeding/Seed Dispersal.csbut there are two issues:demographic-seedinghereLibrary-Succession/src/demographic-seeding/Algorithm.cs
Line 33 in fd0e24a
density-seeding/Seed Dispersal.cs(whileDensitySeedMapdoes) , so I am still not sure if Seed_Dispersal.dll is justdensity-seeding/Seed Dispersal.cs.Could you point me to the source of this
Seed_Dispersal.dll?Thank you very much for your efforts, and I apologize for the potentially dumb question in advance!
-Bahaa