mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-26 10:49:19 +02:00
477 B
477 B
description, applyTo
| description | applyTo |
|---|---|
| Guidelines for this solution | **/*.csproj, **/*.cs |
Multi .NET Framework Targeting
Instructions
- The main project "WireMock.Net.Minimal" targets
netstandard2.0andnet8.0. Ensure that any new code or dependencies are compatible with these frameworks.
C# Guidelines
Instructions
- When a new ByteArray is needed, do not use
var data = new byte[bufferSize];. Always usevar data = ArrayPool<byte>.Shared.Lease(bufferSize);.