We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76095e3 commit 98e3701Copy full SHA for 98e3701
README.md
@@ -180,9 +180,9 @@ SimpleFileHandler.Append("path/to/file.txt", "Sample text 2");
180
### ProjectToLocation
181
- extract a file from the project to a given location
182
```csharp
183
-SimpleFileHandler.ProjectToLocation(Assembly.GetCallingAssembly(), "SampleClass.cs");
+SimpleFileHandler.ProjectToLocation(Assembly.GetExecutingAssembly(), "SampleClass.cs");
184
185
// Or
186
187
-SimpleFileHandler.ProjectToLocation(Assembly.GetCallingAssembly(), "SampleClass.cs", "path/to/destination");
+SimpleFileHandler.ProjectToLocation(Assembly.GetExecutingAssembly(), "SampleClass.cs", "path/to/destination");
188
```
0 commit comments