├── .vs ├── GoSpec │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── FileContentIndex │ │ ├── 5eaa68fb-82f8-4120-b80a-bce4b4a4130e.vsidx │ │ ├── 97ace99e-3334-4327-af19-fe7622fb6577.vsidx │ │ └── read.lock │ └── v17 │ │ ├── .futdcache.v2 │ │ └── .suo ├── GoSpecPlugin │ └── FileContentIndex │ │ ├── 453e9e41-6ce0-4f64-bb50-9dd20b860d51.vsidx │ │ ├── b8d926b4-52bc-46b3-93ba-e2140088151d.vsidx │ │ └── read.lock ├── HelloWorldPlugin │ ├── FileContentIndex │ │ ├── 16844f02-bae9-48f0-be8e-659b111269b7.vsidx │ │ ├── 236dca8e-e8d9-4969-8dbb-4d506207da52.vsidx │ │ ├── f9801e41-3f51-4136-afaa-cc70f440a02f.vsidx │ │ └── read.lock │ └── v17 │ │ └── .futdcache.v2 └── ProjectEvaluation │ ├── gospec.metadata.v7.bin │ ├── gospec.projects.v7.bin │ ├── gospecplugin.metadata.v7.bin │ └── gospecplugin.projects.v7.bin ├── GoSpec.cs ├── GoSpec.csproj ├── GoSpec.sln ├── README.md ├── bin └── Debug │ └── net7.0 │ ├── CounterStrikeSharp.API.dll │ ├── CounterStrikeSharp.API.pdb │ ├── CounterStrikeSharp.API.xml │ ├── GoSpec.deps.json │ ├── GoSpec.dll │ ├── GoSpec.pdb │ ├── McMaster.NETCore.Plugins.dll │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ ├── Microsoft.Extensions.DependencyModel.dll │ └── gospec-v1.2.zip └── obj ├── Debug └── net7.0 │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ ├── GoSpec.AssemblyInfo.cs │ ├── GoSpec.AssemblyInfoInputs.cache │ ├── GoSpec.GeneratedMSBuildEditorConfig.editorconfig │ ├── GoSpec.GlobalUsings.g.cs │ ├── GoSpec.assets.cache │ ├── GoSpec.csproj.AssemblyReference.cache │ ├── GoSpec.csproj.CopyComplete │ ├── GoSpec.csproj.CoreCompileInputs.cache │ ├── GoSpec.csproj.FileListAbsolute.txt │ ├── GoSpec.dll │ ├── GoSpec.pdb │ ├── GoSpecPlugin.AssemblyInfo.cs │ ├── GoSpecPlugin.AssemblyInfoInputs.cache │ ├── GoSpecPlugin.GeneratedMSBuildEditorConfig.editorconfig │ ├── GoSpecPlugin.GlobalUsings.g.cs │ ├── GoSpecPlugin.assets.cache │ ├── GoSpecPlugin.csproj.AssemblyReference.cache │ ├── GoSpecPlugin.csproj.CopyComplete │ ├── GoSpecPlugin.csproj.CoreCompileInputs.cache │ ├── GoSpecPlugin.csproj.FileListAbsolute.txt │ ├── GoSpecPlugin.dll │ ├── GoSpecPlugin.pdb │ ├── ref │ ├── GoSpec.dll │ └── GoSpecPlugin.dll │ └── refint │ ├── GoSpec.dll │ └── GoSpecPlugin.dll ├── GoSpec.csproj.nuget.dgspec.json ├── GoSpec.csproj.nuget.g.props ├── GoSpec.csproj.nuget.g.targets ├── GoSpecPlugin.csproj.nuget.dgspec.json ├── GoSpecPlugin.csproj.nuget.g.props ├── GoSpecPlugin.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.vs/GoSpec/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/GoSpec/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/GoSpec/FileContentIndex/5eaa68fb-82f8-4120-b80a-bce4b4a4130e.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/GoSpec/FileContentIndex/5eaa68fb-82f8-4120-b80a-bce4b4a4130e.vsidx -------------------------------------------------------------------------------- /.vs/GoSpec/FileContentIndex/97ace99e-3334-4327-af19-fe7622fb6577.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/GoSpec/FileContentIndex/97ace99e-3334-4327-af19-fe7622fb6577.vsidx -------------------------------------------------------------------------------- /.vs/GoSpec/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/GoSpec/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/GoSpec/v17/.futdcache.v2 -------------------------------------------------------------------------------- /.vs/GoSpec/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/GoSpec/v17/.suo -------------------------------------------------------------------------------- /.vs/GoSpecPlugin/FileContentIndex/453e9e41-6ce0-4f64-bb50-9dd20b860d51.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/GoSpecPlugin/FileContentIndex/453e9e41-6ce0-4f64-bb50-9dd20b860d51.vsidx -------------------------------------------------------------------------------- /.vs/GoSpecPlugin/FileContentIndex/b8d926b4-52bc-46b3-93ba-e2140088151d.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/GoSpecPlugin/FileContentIndex/b8d926b4-52bc-46b3-93ba-e2140088151d.vsidx -------------------------------------------------------------------------------- /.vs/GoSpecPlugin/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/HelloWorldPlugin/FileContentIndex/16844f02-bae9-48f0-be8e-659b111269b7.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/HelloWorldPlugin/FileContentIndex/16844f02-bae9-48f0-be8e-659b111269b7.vsidx -------------------------------------------------------------------------------- /.vs/HelloWorldPlugin/FileContentIndex/236dca8e-e8d9-4969-8dbb-4d506207da52.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/HelloWorldPlugin/FileContentIndex/236dca8e-e8d9-4969-8dbb-4d506207da52.vsidx -------------------------------------------------------------------------------- /.vs/HelloWorldPlugin/FileContentIndex/f9801e41-3f51-4136-afaa-cc70f440a02f.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/HelloWorldPlugin/FileContentIndex/f9801e41-3f51-4136-afaa-cc70f440a02f.vsidx -------------------------------------------------------------------------------- /.vs/HelloWorldPlugin/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/HelloWorldPlugin/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/HelloWorldPlugin/v17/.futdcache.v2 -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/gospec.metadata.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/ProjectEvaluation/gospec.metadata.v7.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/gospec.projects.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/ProjectEvaluation/gospec.projects.v7.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/gospecplugin.metadata.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/ProjectEvaluation/gospecplugin.metadata.v7.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/gospecplugin.projects.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/.vs/ProjectEvaluation/gospecplugin.projects.v7.bin -------------------------------------------------------------------------------- /GoSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/GoSpec.cs -------------------------------------------------------------------------------- /GoSpec.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/GoSpec.csproj -------------------------------------------------------------------------------- /GoSpec.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/GoSpec.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/README.md -------------------------------------------------------------------------------- /bin/Debug/net7.0/CounterStrikeSharp.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/CounterStrikeSharp.API.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/CounterStrikeSharp.API.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/CounterStrikeSharp.API.pdb -------------------------------------------------------------------------------- /bin/Debug/net7.0/CounterStrikeSharp.API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/CounterStrikeSharp.API.xml -------------------------------------------------------------------------------- /bin/Debug/net7.0/GoSpec.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/GoSpec.deps.json -------------------------------------------------------------------------------- /bin/Debug/net7.0/GoSpec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/GoSpec.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/GoSpec.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/GoSpec.pdb -------------------------------------------------------------------------------- /bin/Debug/net7.0/McMaster.NETCore.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/McMaster.NETCore.Plugins.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /bin/Debug/net7.0/gospec-v1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/bin/Debug/net7.0/gospec-v1.2.zip -------------------------------------------------------------------------------- /obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.GlobalUsings.g.cs -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4ae2f8cc914e5731f0dd5f350597a99e76bffa32 2 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpec.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpec.pdb -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpecPlugin.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | af664c516f23c90175b90d840ca093ce18198b71 2 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpecPlugin.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpecPlugin.GlobalUsings.g.cs -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpecPlugin.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpecPlugin.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b5fd285ea9e743660e4fdc32f191640d18da4ad5 2 | -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpecPlugin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpecPlugin.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/GoSpecPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/GoSpecPlugin.pdb -------------------------------------------------------------------------------- /obj/Debug/net7.0/ref/GoSpec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/ref/GoSpec.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/ref/GoSpecPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/ref/GoSpecPlugin.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/refint/GoSpec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/refint/GoSpec.dll -------------------------------------------------------------------------------- /obj/Debug/net7.0/refint/GoSpecPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/Debug/net7.0/refint/GoSpecPlugin.dll -------------------------------------------------------------------------------- /obj/GoSpec.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/GoSpec.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/GoSpec.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/GoSpec.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/GoSpec.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/GoSpec.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/GoSpecPlugin.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/GoSpecPlugin.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/GoSpecPlugin.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/GoSpecPlugin.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/GoSpecPlugin.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/GoSpecPlugin.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joahreason/GoSpec/HEAD/obj/project.nuget.cache --------------------------------------------------------------------------------