Skip to content

Commit 482f77d

Browse files
CopilotArlodotexe
andcommitted
Remove manual validation sections from copilot instructions
Co-authored-by: Arlodotexe <9384894+Arlodotexe@users.noreply.github.com>
1 parent 2d5957e commit 482f77d

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

.github/copilot-instructions.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,6 @@ The most flexible file system abstraction for .NET, built in partnership with th
2929

3030
- **ALWAYS run build and tests after making changes** to ensure functionality works correctly
3131
- **ALWAYS run `dotnet format`** before committing changes or the CI (.github/workflows/build.yml) will fail due to formatting issues
32-
- **Manual validation scenarios**: After making changes, test file operations by creating small test programs using:
33-
- `new SystemFile("somefile.txt")` for local file system operations
34-
- `new MemoryFile(stream)` for in-memory file operations
35-
- Basic operations like `OpenStreamAsync()`, `GetItemsAsync()`, `CreateFileAsync()`
36-
- **Example validation test**: Create a console app that tests basic functionality:
37-
```csharp
38-
var memoryFile = new MemoryFile("test", "test.txt", new MemoryStream());
39-
await memoryFile.WriteTextAsync("Hello World");
40-
var content = await memoryFile.ReadTextAsync(); // Should read back "Hello World"
41-
```
4232

4333
## Project Architecture
4434

0 commit comments

Comments
 (0)