tmds / Tmds.LinuxAsync

MIT License
25 stars 3 forks source link

reference System.IO.Pipelines to fix the build #59

Closed adamsitnik closed 4 years ago

adamsitnik commented 4 years ago

This fixes the build error (I was not getting it until I've run git clean -xfd):

AsyncContext.cs(3,17): error CS0234: The type or namespace name 'Pipelines' does not exist in the namespace 'System.IO' (are you missing an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
EPollAsyncEngine.EPollAsyncContext.cs(3,17): error CS0234: The type or namespace name 'Pipelines' does not exist in the namespace 'System.IO' (are you missing an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
EPollAsyncEngine.EPollThread.cs(3,17): error CS0234: The type or namespace name 'Pipelines' does not exist in the namespace 'System.IO' (are you missing an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
IOUringAsyncEngine.IOUringAsyncContext.cs(4,17): error CS0234: The type or namespace name 'Pipelines' does not exist in the namespace 'System.IO' (are you missing an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
IOUringAsyncEngine.IOUringThread.cs(3,17): error CS0234: The type or namespace name 'Pipelines' does not exist in the namespace 'System.IO' (are you missing an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
Socket.cs(6,17): error CS0234: The type or namespace name 'Pipelines' does not exist in the namespace 'System.IO' (are you missing an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
AsyncContext.cs(36,25): error CS0246: The type or namespace name 'PipeScheduler' could not be found (are you missing a using directive or an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
EPollAsyncEngine.EPollAsyncContext.cs(22,29): error CS0246: The type or namespace name 'PipeScheduler' could not be found (are you missing a using directive or an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
IOUringAsyncEngine.IOUringAsyncContext.cs(26,29): error CS0246: The type or namespace name 'PipeScheduler' could not be found (are you missing a using directive or an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
EPollAsyncEngine.EPollThread.cs(13,36): error CS0246: The type or namespace name 'PipeScheduler' could not be found (are you missing a using directive or an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
Socket.cs(169,16): error CS0246: The type or namespace name 'PipeScheduler' could not be found (are you missing a using directive or an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
IOUringAsyncEngine.IOUringThread.cs(13,38): error CS0246: The type or namespace name 'PipeScheduler' could not be found (are you missing a using directive or an assembly reference?) [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
EPollAsyncEngine.EPollThread.cs(195,34): error CS0115: 'EPollAsyncEngine.EPollThread.Schedule(Action<object?>, object?)': no suitable method found to override [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]
IOUringAsyncEngine.IOUringThread.cs(135,34): error CS0115: 'IOUringAsyncEngine.IOUringThread.Schedule(Action<object?>, object?)': no suitable method found to override [C:\Projects\Tmds.LinuxAsync\src\Tmds.LinuxAsync\Tmds.LinuxAsync.csproj]