Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
53 views

tools for drawing python dependancy graph

Is there an open source tool for drawing dependancy graphs for a python project? I don't use any dynamic imports (with import) in my project at the moment, so it doesn't need to check for that, as ...
2
votes
3answers
147 views

Static libraries dependency

I need some basic clarification on C++ static linkage. I have a file called data_client.lib. There are three independant consumers for the library file a.exe, b.exe and c.exe. There is a service ...
2
votes
5answers
402 views

ASP.NET Cache and File Dependancies

I want a ASP.NET cache item to be recycled when a specific file is touched, but the following code is not working: HttpContext.Current.Cache.Insert( ...
0
votes
1answer
89 views

Massive use of ASP.NET file-dependency: Downsides?

I have hundreds or thousand of objects each dependent on the state of several files and/or folders. I thought using the built in Cache in combination with CacheDependencies and ...
0
votes
1answer
159 views

How do i copy files from a referenced assembly's structure to the local structure

I am building a library that has some dependancies that are not compiled (example: javascript and css files). What i would like is to have the dependant files automatically created in or copied to ...