├── .azuredevops └── dependabot.yml ├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── .editorconfig ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── publish-artifacts │ │ └── action.yaml ├── copilot-instructions.md ├── renovate.json └── workflows │ ├── copilot-setup-steps.yml │ ├── docs.yml │ ├── docs_validate.yml │ └── libtemplate-update.yml ├── .gitignore ├── .prettierrc.yaml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── CodeQL.yml ├── Directory.Build.props ├── Directory.Build.rsp ├── Directory.Build.targets ├── Directory.Packages.Analyzers.props ├── Directory.Packages.props ├── LICENSE ├── Microsoft.Windows.CsWin32.sln ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure-pipelines.yml ├── azure-pipelines ├── Archive-SourceCode.ps1 ├── BuildStageVariables.yml ├── Get-InsertionPRId.ps1 ├── GlobalVariables.yml ├── Merge-CodeCoverage.ps1 ├── NuGetSbom.props ├── OptProf.yml ├── OptProf_part2.yml ├── PoliCheckExclusions.xml ├── PostPRMessage.ps1 ├── TSAOptions.json ├── WIFtoPATauth.yml ├── apiscan.yml ├── archive-sourcecode.yml ├── build.yml ├── dotnet.yml ├── falsepositives.gdnsuppress ├── install-dependencies.yml ├── integration-test.yml ├── libtemplate-update.yml ├── microbuild.after.yml ├── microbuild.before.yml ├── no_authenticode.txt ├── no_strongname.txt ├── official.yml ├── prepare-insertion-stages.yml ├── publish-codecoverage.yml ├── publish-symbols.yml ├── publish_artifacts.ps1 ├── release-deployment-prep.yml ├── release.yml ├── schedule-only-steps.yml ├── unofficial.yml ├── vs-insertion.yml └── vs-validation.yml ├── azurepipelines-coverage.yml ├── docfx ├── .gitignore ├── docfx.json ├── docs │ ├── 3rdPartyMetadata.md │ ├── ArchSpecificAPIs.md │ ├── features.md │ ├── getting-started.md │ └── toc.yml ├── images │ ├── ConfigurationManager_x64.png │ ├── StandardToolbarPlatformSwitcher.png │ └── demo.gif ├── index.md └── toc.yml ├── global.json ├── init.cmd ├── init.ps1 ├── integration-tests ├── Directory.Build.props ├── Directory.Build.targets ├── buildtask-sdk │ ├── TestKey.snk │ ├── app │ │ ├── NativeMethods.txt │ │ ├── Program.cs │ │ ├── buildtask-sdk.NativeMethods.txt │ │ └── buildtask-sdk.csproj │ ├── buildtask-sdk.slnx │ └── dependency │ │ ├── AssemblyInfo.cs │ │ ├── NativeMethods.json │ │ ├── NativeMethods.txt │ │ └── buildtask-sdk-dependency.csproj ├── nonsdk │ ├── App.config │ ├── NativeMethods.json │ ├── NativeMethods.txt │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── nonsdk.csproj ├── nuget.config └── sdk │ ├── NativeMethods.json │ ├── NativeMethods.txt │ ├── Program.cs │ ├── sdk.NativeMethods.txt │ └── sdk.csproj ├── nuget.config ├── settings.VisualStudio.json ├── src ├── .editorconfig ├── AssemblyInfo.cs ├── AssemblyInfo.vb ├── CsWin32Generator │ ├── CsWin32Generator.csproj │ └── Program.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Microsoft.Windows.CsWin32.BuildTasks │ ├── CsWin32CodeGeneratorTask.cs │ ├── Microsoft.Windows.CsWin32.BuildTasks.csproj │ └── version.json ├── Microsoft.Windows.CsWin32 │ ├── AnalyzerReleases.Shipped.md │ ├── AnalyzerReleases.Unshipped.md │ ├── ArrayTypeHandleInfo.cs │ ├── BannedSymbols.txt │ ├── BindingRedirects.cs │ ├── CustomAttributeTypeProvider.cs │ ├── Docs.cs │ ├── FastSyntaxFactory.cs │ ├── GenerationFailedException.cs │ ├── Generator.ApiDocs.cs │ ├── Generator.Com.cs │ ├── Generator.Constant.cs │ ├── Generator.CustomMarshaller.cs │ ├── Generator.Delegate.cs │ ├── Generator.Enum.cs │ ├── Generator.Extern.cs │ ├── Generator.Features.cs │ ├── Generator.FriendlyOverloads.cs │ ├── Generator.GeneratedCode.cs │ ├── Generator.Handle.cs │ ├── Generator.InlineArrays.cs │ ├── Generator.Invariants.cs │ ├── Generator.MetadataHelpers.cs │ ├── Generator.Struct.cs │ ├── Generator.Templates.cs │ ├── Generator.TypeDef.cs │ ├── Generator.WhitespaceRewriter.cs │ ├── Generator.cs │ ├── GeneratorExtensions.cs │ ├── GeneratorOptions.cs │ ├── GlobalUsings.cs │ ├── HandleTypeHandleInfo.cs │ ├── IGenerator.cs │ ├── ITypeHandleContainer.cs │ ├── MetadataCache.cs │ ├── MetadataFile.cs │ ├── MetadataIndex.cs │ ├── MetadataQualifiedTokens.cs │ ├── MetadataUtilities.cs │ ├── Microsoft.Windows.CsWin32.csproj │ ├── Microsoft.Windows.CsWin32.nuspec │ ├── Microsoft.Windows.CsWin32.targets │ ├── ModuleInitializerAttribute.cs │ ├── NamespaceMetadata.cs │ ├── PlatformIncompatibleException.cs │ ├── PointerTypeHandleInfo.cs │ ├── PrimitiveSignatureHandleProvider.cs │ ├── PrimitiveTypeHandleInfo.cs │ ├── README.md │ ├── Rental.cs │ ├── SignatureHandleProvider.cs │ ├── SimpleSyntaxFactory.cs │ ├── SourceGenerator.cs │ ├── SuperGenerator.cs │ ├── TypeHandleInfo.cs │ ├── TypeSyntaxAndMarshaling.cs │ ├── TypeSyntaxSettings.cs │ ├── build │ │ ├── Microsoft.Windows.CsWin32.props │ │ ├── Microsoft.Windows.CsWin32.targets │ │ ├── net20 │ │ │ ├── Microsoft.Windows.CsWin32.props │ │ │ └── Microsoft.Windows.CsWin32.targets │ │ └── netstandard1.0 │ │ │ ├── Microsoft.Windows.CsWin32.props │ │ │ └── Microsoft.Windows.CsWin32.targets │ ├── readme.txt │ ├── settings.schema.json │ ├── templates │ │ ├── .editorconfig │ │ ├── BOOL.cs │ │ ├── BOOLEAN.cs │ │ ├── BSTR.cs │ │ ├── CharSet_Workaround.cs │ │ ├── ComHelpers.cs │ │ ├── DECIMAL.cs │ │ ├── HRESULT.cs │ │ ├── IUnknownHelperMethods.cs │ │ ├── IVTable.cs │ │ ├── IVTable`2.cs │ │ ├── NTSTATUS.cs │ │ ├── OverloadResolutionPriorityAttribute.cs │ │ ├── PCSTR.cs │ │ ├── PCWSTR.cs │ │ ├── PCZZSTR.cs │ │ ├── PCZZWSTR.cs │ │ ├── PInvokeClassHelperMethods.cs │ │ ├── PInvokeClassMacros.cs │ │ ├── PSTR.cs │ │ ├── PWSTR.cs │ │ ├── PZZSTR.cs │ │ ├── PZZWSTR.cs │ │ ├── RECT.cs │ │ ├── SIZE.cs │ │ ├── SYSTEMTIME.cs │ │ ├── VARIANT_BOOL.cs │ │ ├── VariableLengthInlineArray`1.cs │ │ ├── VariableLengthInlineArray`2.cs │ │ ├── WinRTCustomMarshaler.cs │ │ ├── marshaling │ │ │ └── CoCreateInstance.cs │ │ └── no_marshaling │ │ │ └── CoCreateInstance.cs │ ├── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ └── version.json ├── OptProf.targets └── VSInsertionMetadata │ ├── Library.VSInsertionMetadata.proj │ ├── ProfilingInputs.props │ └── VSInsertionMetadata.targets ├── stylecop.json ├── test ├── .editorconfig ├── CsWin32Generator.BuildTasks.Tests │ ├── BuildTaskTests.cs │ ├── CsWin32Generator.BuildTasks.Tests.csproj │ ├── TestContent │ │ ├── NativeMethods.json │ │ └── NativeMethods.txt │ └── xunit.runner.json ├── CsWin32Generator.Tests │ ├── CsWin32Generator.Tests.csproj │ ├── CsWin32GeneratorFullTests.cs │ ├── CsWin32GeneratorTests.cs │ ├── CsWin32GeneratorTestsBase.cs │ ├── TestContent │ │ ├── NativeMethods.EmitSingleFile.json │ │ ├── NativeMethods.IncludePointerOverloads.json │ │ ├── NativeMethods.json │ │ ├── NativeMethods.txt │ │ ├── NativeMethodsWithCommentAndComma.json │ │ └── TestKey.snk │ └── xunit.runner.json ├── CsWin32User.props ├── CustomIInspectable │ ├── .gitignore │ ├── CustomIInspectable.csproj │ ├── CustomIInspectable.idl │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Directory.Packages.props │ ├── main.cpp │ └── readme.md ├── Directory.Build.props ├── Directory.Build.targets ├── GenerationSandbox.BuildTask.Tests │ ├── COMTests.cs │ ├── GenerationSandbox.BuildTask.Tests.csproj │ ├── NativeMethods.json │ ├── NativeMethods.txt │ └── SpanOverloadTests.cs ├── GenerationSandbox.Tests │ ├── BasicTests.cs │ ├── BitFieldTests.cs │ ├── BoolTests.cs │ ├── BooleanTests.cs │ ├── ComRuntimeTests.cs │ ├── FILE_CREATE_FLAGS.cs │ ├── FlexibleArrayTests.cs │ ├── GeneratedForm.cs │ ├── GenerationSandbox.Tests.csproj │ ├── MacroTests.cs │ ├── NativeMethods.json │ ├── NativeMethods.txt │ ├── StringTests.cs │ ├── SystemDrawingStructTests.cs │ ├── TestUtils.cs │ ├── VARIANT_BOOLTests.cs │ └── xunit.runner.json ├── GenerationSandbox.Unmarshalled.Tests │ ├── COMTests.cs │ ├── ComHelpers.cs │ ├── GeneratedForm.cs │ ├── GenerationSandbox.Unmarshalled.Tests.csproj │ ├── NativeMethods.json │ └── NativeMethods.txt ├── GenerationSandbox.props ├── Microsoft.Windows.CsWin32.Tests │ ├── COMTests.cs │ ├── CSharpSourceGeneratorVerifier.cs │ ├── ConstantsTests.cs │ ├── DelegateTests.cs │ ├── EnumTests.cs │ ├── ExternMethodTests.cs │ ├── ExternalMetadata │ │ ├── CustomIInspectable.winmd │ │ ├── NOTICE.md │ │ └── ServiceFabric.winmd │ ├── FriendlyOverloadTests.cs │ ├── FullGenerationTests.cs │ ├── GeneratorConfiguration.cs │ ├── GeneratorOptionsTests.cs │ ├── GeneratorTestBase.cs │ ├── GeneratorTests.cs │ ├── GlobalUsings.cs │ ├── HandleTests.cs │ ├── InlineArrayTests.cs │ ├── MacrosTests.cs │ ├── Microsoft.Windows.CsWin32.Tests.csproj │ ├── MultiMetadataTests.cs │ ├── MyReferenceAssemblies.cs │ ├── NumberedLineWriter.cs │ ├── SourceGeneratorTests.cs │ ├── StructTests.cs │ ├── TestUtils.cs │ └── xunit.runner.json ├── SpellChecker │ ├── NativeMethods.json │ ├── NativeMethods.txt │ ├── Program.cs │ └── SpellChecker.csproj └── WinRTInteropTest │ ├── CompositionHost.cs │ ├── NativeMethods.txt │ ├── Program.cs │ └── WinRTInteropTest.csproj ├── tools ├── Check-DotNetRuntime.ps1 ├── Check-DotNetSdk.ps1 ├── Convert-PDB.ps1 ├── Get-3rdPartySymbolFiles.ps1 ├── Get-ArtifactsStagingDirectory.ps1 ├── Get-CodeCovTool.ps1 ├── Get-LibTemplateBasis.ps1 ├── Get-NuGetTool.ps1 ├── Get-ProcDump.ps1 ├── Get-SymbolFiles.ps1 ├── Get-TempToolsPath.ps1 ├── Install-DotNetSdk.ps1 ├── Install-NuGetCredProvider.ps1 ├── Install-NuGetPackage.ps1 ├── MergeFrom-Template.ps1 ├── Prepare-Legacy-Symbols.ps1 ├── Set-EnvVars.ps1 ├── artifacts │ ├── APIScanInputs.ps1 │ ├── LocBin.ps1 │ ├── VSInsertion.ps1 │ ├── Variables.ps1 │ ├── _all.ps1 │ ├── _stage_all.ps1 │ ├── build_logs.ps1 │ ├── coverageResults.ps1 │ ├── deployables.ps1 │ ├── projectAssetsJson.ps1 │ ├── symbols.ps1 │ ├── testResults.ps1 │ └── test_symbols.ps1 ├── dotnet-test-cloud.ps1 ├── publish-CodeCov.ps1 ├── test.runsettings └── variables │ ├── BusinessGroupName.ps1 │ ├── DotNetSdkVersion.ps1 │ ├── InsertJsonValues.ps1 │ ├── InsertPropsValues.ps1 │ ├── InsertTargetBranch.ps1 │ ├── InsertVersionsValues.ps1 │ ├── IsSigned.ps1 │ ├── LocLanguages.ps1 │ ├── ProfilingInputsDropName.ps1 │ ├── SymbolsFeatureName.ps1 │ ├── VstsDropNames.ps1 │ ├── _all.ps1 │ └── _define.ps1 └── version.json /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.editorconfig: -------------------------------------------------------------------------------- 1 | [renovate.json*] 2 | indent_style = tab 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/publish-artifacts/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/actions/publish-artifacts/action.yaml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/docs_validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/workflows/docs_validate.yml -------------------------------------------------------------------------------- /.github/workflows/libtemplate-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.github/workflows/libtemplate-update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/CodeQL.yml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.Analyzers.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/Directory.Packages.Analyzers.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.Windows.CsWin32.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/Microsoft.Windows.CsWin32.sln -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /azure-pipelines/Archive-SourceCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/Archive-SourceCode.ps1 -------------------------------------------------------------------------------- /azure-pipelines/BuildStageVariables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/BuildStageVariables.yml -------------------------------------------------------------------------------- /azure-pipelines/Get-InsertionPRId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/Get-InsertionPRId.ps1 -------------------------------------------------------------------------------- /azure-pipelines/GlobalVariables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/GlobalVariables.yml -------------------------------------------------------------------------------- /azure-pipelines/Merge-CodeCoverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/Merge-CodeCoverage.ps1 -------------------------------------------------------------------------------- /azure-pipelines/NuGetSbom.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/NuGetSbom.props -------------------------------------------------------------------------------- /azure-pipelines/OptProf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/OptProf.yml -------------------------------------------------------------------------------- /azure-pipelines/OptProf_part2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/OptProf_part2.yml -------------------------------------------------------------------------------- /azure-pipelines/PoliCheckExclusions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/PoliCheckExclusions.xml -------------------------------------------------------------------------------- /azure-pipelines/PostPRMessage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/PostPRMessage.ps1 -------------------------------------------------------------------------------- /azure-pipelines/TSAOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/TSAOptions.json -------------------------------------------------------------------------------- /azure-pipelines/WIFtoPATauth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/WIFtoPATauth.yml -------------------------------------------------------------------------------- /azure-pipelines/apiscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/apiscan.yml -------------------------------------------------------------------------------- /azure-pipelines/archive-sourcecode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/archive-sourcecode.yml -------------------------------------------------------------------------------- /azure-pipelines/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/build.yml -------------------------------------------------------------------------------- /azure-pipelines/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/dotnet.yml -------------------------------------------------------------------------------- /azure-pipelines/falsepositives.gdnsuppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/falsepositives.gdnsuppress -------------------------------------------------------------------------------- /azure-pipelines/install-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/install-dependencies.yml -------------------------------------------------------------------------------- /azure-pipelines/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/integration-test.yml -------------------------------------------------------------------------------- /azure-pipelines/libtemplate-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/libtemplate-update.yml -------------------------------------------------------------------------------- /azure-pipelines/microbuild.after.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/microbuild.after.yml -------------------------------------------------------------------------------- /azure-pipelines/microbuild.before.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/microbuild.before.yml -------------------------------------------------------------------------------- /azure-pipelines/no_authenticode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/no_authenticode.txt -------------------------------------------------------------------------------- /azure-pipelines/no_strongname.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-pipelines/official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/official.yml -------------------------------------------------------------------------------- /azure-pipelines/prepare-insertion-stages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/prepare-insertion-stages.yml -------------------------------------------------------------------------------- /azure-pipelines/publish-codecoverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/publish-codecoverage.yml -------------------------------------------------------------------------------- /azure-pipelines/publish-symbols.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/publish-symbols.yml -------------------------------------------------------------------------------- /azure-pipelines/publish_artifacts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/publish_artifacts.ps1 -------------------------------------------------------------------------------- /azure-pipelines/release-deployment-prep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/release-deployment-prep.yml -------------------------------------------------------------------------------- /azure-pipelines/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/release.yml -------------------------------------------------------------------------------- /azure-pipelines/schedule-only-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/schedule-only-steps.yml -------------------------------------------------------------------------------- /azure-pipelines/unofficial.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/unofficial.yml -------------------------------------------------------------------------------- /azure-pipelines/vs-insertion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/vs-insertion.yml -------------------------------------------------------------------------------- /azure-pipelines/vs-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azure-pipelines/vs-validation.yml -------------------------------------------------------------------------------- /azurepipelines-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/azurepipelines-coverage.yml -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | api/ 3 | -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/docs/3rdPartyMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/docs/3rdPartyMetadata.md -------------------------------------------------------------------------------- /docfx/docs/ArchSpecificAPIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/docs/ArchSpecificAPIs.md -------------------------------------------------------------------------------- /docfx/docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/docs/features.md -------------------------------------------------------------------------------- /docfx/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/docs/getting-started.md -------------------------------------------------------------------------------- /docfx/docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/docs/toc.yml -------------------------------------------------------------------------------- /docfx/images/ConfigurationManager_x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/images/ConfigurationManager_x64.png -------------------------------------------------------------------------------- /docfx/images/StandardToolbarPlatformSwitcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/images/StandardToolbarPlatformSwitcher.png -------------------------------------------------------------------------------- /docfx/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/images/demo.gif -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/global.json -------------------------------------------------------------------------------- /init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/init.cmd -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/init.ps1 -------------------------------------------------------------------------------- /integration-tests/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /integration-tests/Directory.Build.targets: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/TestKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/buildtask-sdk/TestKey.snk -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/app/NativeMethods.txt: -------------------------------------------------------------------------------- 1 | GetTickCount 2 | -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/buildtask-sdk/app/Program.cs -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/app/buildtask-sdk.NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/buildtask-sdk/app/buildtask-sdk.NativeMethods.txt -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/app/buildtask-sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/buildtask-sdk/app/buildtask-sdk.csproj -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/buildtask-sdk.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/buildtask-sdk/buildtask-sdk.slnx -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/dependency/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/buildtask-sdk/dependency/AssemblyInfo.cs -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/dependency/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/buildtask-sdk/dependency/NativeMethods.json -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/dependency/NativeMethods.txt: -------------------------------------------------------------------------------- 1 | HWND -------------------------------------------------------------------------------- /integration-tests/buildtask-sdk/dependency/buildtask-sdk-dependency.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/buildtask-sdk/dependency/buildtask-sdk-dependency.csproj -------------------------------------------------------------------------------- /integration-tests/nonsdk/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/nonsdk/App.config -------------------------------------------------------------------------------- /integration-tests/nonsdk/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/nonsdk/NativeMethods.json -------------------------------------------------------------------------------- /integration-tests/nonsdk/NativeMethods.txt: -------------------------------------------------------------------------------- 1 | GetTickCount 2 | -------------------------------------------------------------------------------- /integration-tests/nonsdk/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/nonsdk/Program.cs -------------------------------------------------------------------------------- /integration-tests/nonsdk/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/nonsdk/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /integration-tests/nonsdk/nonsdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/nonsdk/nonsdk.csproj -------------------------------------------------------------------------------- /integration-tests/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/nuget.config -------------------------------------------------------------------------------- /integration-tests/sdk/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/sdk/NativeMethods.json -------------------------------------------------------------------------------- /integration-tests/sdk/NativeMethods.txt: -------------------------------------------------------------------------------- 1 | GetTickCount 2 | -------------------------------------------------------------------------------- /integration-tests/sdk/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/sdk/Program.cs -------------------------------------------------------------------------------- /integration-tests/sdk/sdk.NativeMethods.txt: -------------------------------------------------------------------------------- 1 | GetForegroundWindow 2 | -------------------------------------------------------------------------------- /integration-tests/sdk/sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/integration-tests/sdk/sdk.csproj -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/nuget.config -------------------------------------------------------------------------------- /settings.VisualStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/settings.VisualStudio.json -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/CsWin32Generator/CsWin32Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/CsWin32Generator/CsWin32Generator.csproj -------------------------------------------------------------------------------- /src/CsWin32Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/CsWin32Generator/Program.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32.BuildTasks/CsWin32CodeGeneratorTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32.BuildTasks/CsWin32CodeGeneratorTask.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32.BuildTasks/Microsoft.Windows.CsWin32.BuildTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32.BuildTasks/Microsoft.Windows.CsWin32.BuildTasks.csproj -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32.BuildTasks/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32.BuildTasks/version.json -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/ArrayTypeHandleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/ArrayTypeHandleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/BannedSymbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/BannedSymbols.txt -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/BindingRedirects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/BindingRedirects.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/CustomAttributeTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/CustomAttributeTypeProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Docs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Docs.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/FastSyntaxFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/FastSyntaxFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/GenerationFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/GenerationFailedException.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.ApiDocs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.ApiDocs.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Com.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Com.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Constant.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.CustomMarshaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.CustomMarshaller.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Delegate.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Enum.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Extern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Extern.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Features.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Features.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.FriendlyOverloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.FriendlyOverloads.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.GeneratedCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.GeneratedCode.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Handle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Handle.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.InlineArrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.InlineArrays.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Invariants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Invariants.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.MetadataHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.MetadataHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Struct.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.Templates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.Templates.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.TypeDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.TypeDef.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.WhitespaceRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.WhitespaceRewriter.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Generator.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/GeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/GeneratorExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/GeneratorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/GeneratorOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/HandleTypeHandleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/HandleTypeHandleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/IGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/IGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/ITypeHandleContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/ITypeHandleContainer.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/MetadataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/MetadataCache.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/MetadataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/MetadataFile.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/MetadataIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/MetadataIndex.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/MetadataQualifiedTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/MetadataQualifiedTokens.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/MetadataUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/MetadataUtilities.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Microsoft.Windows.CsWin32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Microsoft.Windows.CsWin32.csproj -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Microsoft.Windows.CsWin32.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Microsoft.Windows.CsWin32.nuspec -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Microsoft.Windows.CsWin32.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Microsoft.Windows.CsWin32.targets -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/ModuleInitializerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/ModuleInitializerAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/NamespaceMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/NamespaceMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/PlatformIncompatibleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/PlatformIncompatibleException.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/PointerTypeHandleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/PointerTypeHandleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/PrimitiveSignatureHandleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/PrimitiveSignatureHandleProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/PrimitiveTypeHandleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/PrimitiveTypeHandleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/README.md -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/Rental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/Rental.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/SignatureHandleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/SignatureHandleProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/SimpleSyntaxFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/SimpleSyntaxFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/SourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/SourceGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/SuperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/SuperGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/TypeHandleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/TypeHandleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/TypeSyntaxAndMarshaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/TypeSyntaxAndMarshaling.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/TypeSyntaxSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/TypeSyntaxSettings.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/build/Microsoft.Windows.CsWin32.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/build/Microsoft.Windows.CsWin32.props -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/build/Microsoft.Windows.CsWin32.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/build/Microsoft.Windows.CsWin32.targets -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/build/net20/Microsoft.Windows.CsWin32.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/build/net20/Microsoft.Windows.CsWin32.props -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/build/net20/Microsoft.Windows.CsWin32.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/build/net20/Microsoft.Windows.CsWin32.targets -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/build/netstandard1.0/Microsoft.Windows.CsWin32.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/build/netstandard1.0/Microsoft.Windows.CsWin32.props -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/build/netstandard1.0/Microsoft.Windows.CsWin32.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/build/netstandard1.0/Microsoft.Windows.CsWin32.targets -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/readme.txt -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/settings.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/settings.schema.json -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | indent_style = tab 3 | -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/BOOL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/BOOL.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/BOOLEAN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/BOOLEAN.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/BSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/BSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/CharSet_Workaround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/CharSet_Workaround.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/ComHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/ComHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/DECIMAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/DECIMAL.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/HRESULT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/HRESULT.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/IUnknownHelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/IUnknownHelperMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/IVTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/IVTable.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/IVTable`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/IVTable`2.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/NTSTATUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/NTSTATUS.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/OverloadResolutionPriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/OverloadResolutionPriorityAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PCSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PCSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PCWSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PCWSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PCZZSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PCZZSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PCZZWSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PCZZWSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PInvokeClassHelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PInvokeClassHelperMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PInvokeClassMacros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PInvokeClassMacros.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PWSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PWSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PZZSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PZZSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/PZZWSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/PZZWSTR.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/RECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/RECT.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/SIZE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/SIZE.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/SYSTEMTIME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/SYSTEMTIME.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/VARIANT_BOOL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/VARIANT_BOOL.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/VariableLengthInlineArray`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/VariableLengthInlineArray`1.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/VariableLengthInlineArray`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/VariableLengthInlineArray`2.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/WinRTCustomMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/WinRTCustomMarshaler.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/marshaling/CoCreateInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/marshaling/CoCreateInstance.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/templates/no_marshaling/CoCreateInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/templates/no_marshaling/CoCreateInstance.cs -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/tools/install.ps1 -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/Microsoft.Windows.CsWin32/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/Microsoft.Windows.CsWin32/version.json -------------------------------------------------------------------------------- /src/OptProf.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/OptProf.targets -------------------------------------------------------------------------------- /src/VSInsertionMetadata/Library.VSInsertionMetadata.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/VSInsertionMetadata/Library.VSInsertionMetadata.proj -------------------------------------------------------------------------------- /src/VSInsertionMetadata/ProfilingInputs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/VSInsertionMetadata/ProfilingInputs.props -------------------------------------------------------------------------------- /src/VSInsertionMetadata/VSInsertionMetadata.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/src/VSInsertionMetadata/VSInsertionMetadata.targets -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/stylecop.json -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/CsWin32Generator.BuildTasks.Tests/BuildTaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.BuildTasks.Tests/BuildTaskTests.cs -------------------------------------------------------------------------------- /test/CsWin32Generator.BuildTasks.Tests/CsWin32Generator.BuildTasks.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.BuildTasks.Tests/CsWin32Generator.BuildTasks.Tests.csproj -------------------------------------------------------------------------------- /test/CsWin32Generator.BuildTasks.Tests/TestContent/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.BuildTasks.Tests/TestContent/NativeMethods.json -------------------------------------------------------------------------------- /test/CsWin32Generator.BuildTasks.Tests/TestContent/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.BuildTasks.Tests/TestContent/NativeMethods.txt -------------------------------------------------------------------------------- /test/CsWin32Generator.BuildTasks.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.BuildTasks.Tests/xunit.runner.json -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/CsWin32Generator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/CsWin32Generator.Tests.csproj -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/CsWin32GeneratorFullTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/CsWin32GeneratorFullTests.cs -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/CsWin32GeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/CsWin32GeneratorTests.cs -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/CsWin32GeneratorTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/CsWin32GeneratorTestsBase.cs -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/TestContent/NativeMethods.EmitSingleFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/TestContent/NativeMethods.EmitSingleFile.json -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/TestContent/NativeMethods.IncludePointerOverloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/TestContent/NativeMethods.IncludePointerOverloads.json -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/TestContent/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/TestContent/NativeMethods.json -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/TestContent/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/TestContent/NativeMethods.txt -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/TestContent/NativeMethodsWithCommentAndComma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/TestContent/NativeMethodsWithCommentAndComma.json -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/TestContent/TestKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/TestContent/TestKey.snk -------------------------------------------------------------------------------- /test/CsWin32Generator.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32Generator.Tests/xunit.runner.json -------------------------------------------------------------------------------- /test/CsWin32User.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CsWin32User.props -------------------------------------------------------------------------------- /test/CustomIInspectable/.gitignore: -------------------------------------------------------------------------------- 1 | *.winmd 2 | -------------------------------------------------------------------------------- /test/CustomIInspectable/CustomIInspectable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CustomIInspectable/CustomIInspectable.csproj -------------------------------------------------------------------------------- /test/CustomIInspectable/CustomIInspectable.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CustomIInspectable/CustomIInspectable.idl -------------------------------------------------------------------------------- /test/CustomIInspectable/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CustomIInspectable/Directory.Build.props -------------------------------------------------------------------------------- /test/CustomIInspectable/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CustomIInspectable/Directory.Build.targets -------------------------------------------------------------------------------- /test/CustomIInspectable/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CustomIInspectable/Directory.Packages.props -------------------------------------------------------------------------------- /test/CustomIInspectable/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /test/CustomIInspectable/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/CustomIInspectable/readme.md -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /test/GenerationSandbox.BuildTask.Tests/COMTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.BuildTask.Tests/COMTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.BuildTask.Tests/GenerationSandbox.BuildTask.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.BuildTask.Tests/GenerationSandbox.BuildTask.Tests.csproj -------------------------------------------------------------------------------- /test/GenerationSandbox.BuildTask.Tests/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.BuildTask.Tests/NativeMethods.json -------------------------------------------------------------------------------- /test/GenerationSandbox.BuildTask.Tests/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.BuildTask.Tests/NativeMethods.txt -------------------------------------------------------------------------------- /test/GenerationSandbox.BuildTask.Tests/SpanOverloadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.BuildTask.Tests/SpanOverloadTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/BasicTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/BitFieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/BitFieldTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/BoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/BoolTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/BooleanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/BooleanTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/ComRuntimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/ComRuntimeTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/FILE_CREATE_FLAGS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/FILE_CREATE_FLAGS.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/FlexibleArrayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/FlexibleArrayTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/GeneratedForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/GeneratedForm.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/GenerationSandbox.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/GenerationSandbox.Tests.csproj -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/MacroTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/MacroTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/NativeMethods.json -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/NativeMethods.txt -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/StringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/StringTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/SystemDrawingStructTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/SystemDrawingStructTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/TestUtils.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/VARIANT_BOOLTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/VARIANT_BOOLTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Tests/xunit.runner.json -------------------------------------------------------------------------------- /test/GenerationSandbox.Unmarshalled.Tests/COMTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Unmarshalled.Tests/COMTests.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Unmarshalled.Tests/ComHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Unmarshalled.Tests/ComHelpers.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Unmarshalled.Tests/GeneratedForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Unmarshalled.Tests/GeneratedForm.cs -------------------------------------------------------------------------------- /test/GenerationSandbox.Unmarshalled.Tests/GenerationSandbox.Unmarshalled.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Unmarshalled.Tests/GenerationSandbox.Unmarshalled.Tests.csproj -------------------------------------------------------------------------------- /test/GenerationSandbox.Unmarshalled.Tests/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Unmarshalled.Tests/NativeMethods.json -------------------------------------------------------------------------------- /test/GenerationSandbox.Unmarshalled.Tests/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.Unmarshalled.Tests/NativeMethods.txt -------------------------------------------------------------------------------- /test/GenerationSandbox.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/GenerationSandbox.props -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/COMTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/COMTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/CSharpSourceGeneratorVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/CSharpSourceGeneratorVerifier.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/ConstantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/ConstantsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/DelegateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/DelegateTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/EnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/EnumTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/ExternMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/ExternMethodTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/ExternalMetadata/CustomIInspectable.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/ExternalMetadata/CustomIInspectable.winmd -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/ExternalMetadata/NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/ExternalMetadata/NOTICE.md -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/ExternalMetadata/ServiceFabric.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/ExternalMetadata/ServiceFabric.winmd -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/FriendlyOverloadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/FriendlyOverloadTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/FullGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/FullGenerationTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/GeneratorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/GeneratorConfiguration.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/GeneratorOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/GeneratorOptionsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/GeneratorTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/GeneratorTestBase.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/GeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/GeneratorTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/HandleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/HandleTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/InlineArrayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/InlineArrayTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/MacrosTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/MacrosTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/Microsoft.Windows.CsWin32.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/Microsoft.Windows.CsWin32.Tests.csproj -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/MultiMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/MultiMetadataTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/MyReferenceAssemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/MyReferenceAssemblies.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/NumberedLineWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/NumberedLineWriter.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/SourceGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/SourceGeneratorTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/StructTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/StructTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/TestUtils.cs -------------------------------------------------------------------------------- /test/Microsoft.Windows.CsWin32.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/Microsoft.Windows.CsWin32.Tests/xunit.runner.json -------------------------------------------------------------------------------- /test/SpellChecker/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/SpellChecker/NativeMethods.json -------------------------------------------------------------------------------- /test/SpellChecker/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/SpellChecker/NativeMethods.txt -------------------------------------------------------------------------------- /test/SpellChecker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/SpellChecker/Program.cs -------------------------------------------------------------------------------- /test/SpellChecker/SpellChecker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/SpellChecker/SpellChecker.csproj -------------------------------------------------------------------------------- /test/WinRTInteropTest/CompositionHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/WinRTInteropTest/CompositionHost.cs -------------------------------------------------------------------------------- /test/WinRTInteropTest/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/WinRTInteropTest/NativeMethods.txt -------------------------------------------------------------------------------- /test/WinRTInteropTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/WinRTInteropTest/Program.cs -------------------------------------------------------------------------------- /test/WinRTInteropTest/WinRTInteropTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/test/WinRTInteropTest/WinRTInteropTest.csproj -------------------------------------------------------------------------------- /tools/Check-DotNetRuntime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Check-DotNetRuntime.ps1 -------------------------------------------------------------------------------- /tools/Check-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Check-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Convert-PDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Convert-PDB.ps1 -------------------------------------------------------------------------------- /tools/Get-3rdPartySymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Get-3rdPartySymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-ArtifactsStagingDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Get-ArtifactsStagingDirectory.ps1 -------------------------------------------------------------------------------- /tools/Get-CodeCovTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Get-CodeCovTool.ps1 -------------------------------------------------------------------------------- /tools/Get-LibTemplateBasis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Get-LibTemplateBasis.ps1 -------------------------------------------------------------------------------- /tools/Get-NuGetTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Get-NuGetTool.ps1 -------------------------------------------------------------------------------- /tools/Get-ProcDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Get-ProcDump.ps1 -------------------------------------------------------------------------------- /tools/Get-SymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Get-SymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-TempToolsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Get-TempToolsPath.ps1 -------------------------------------------------------------------------------- /tools/Install-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Install-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Install-NuGetCredProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Install-NuGetCredProvider.ps1 -------------------------------------------------------------------------------- /tools/Install-NuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Install-NuGetPackage.ps1 -------------------------------------------------------------------------------- /tools/MergeFrom-Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/MergeFrom-Template.ps1 -------------------------------------------------------------------------------- /tools/Prepare-Legacy-Symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Prepare-Legacy-Symbols.ps1 -------------------------------------------------------------------------------- /tools/Set-EnvVars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/Set-EnvVars.ps1 -------------------------------------------------------------------------------- /tools/artifacts/APIScanInputs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/APIScanInputs.ps1 -------------------------------------------------------------------------------- /tools/artifacts/LocBin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/LocBin.ps1 -------------------------------------------------------------------------------- /tools/artifacts/VSInsertion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/VSInsertion.ps1 -------------------------------------------------------------------------------- /tools/artifacts/Variables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/Variables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_stage_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/_stage_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/build_logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/build_logs.ps1 -------------------------------------------------------------------------------- /tools/artifacts/coverageResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/coverageResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/deployables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/deployables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/projectAssetsJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/projectAssetsJson.ps1 -------------------------------------------------------------------------------- /tools/artifacts/symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/symbols.ps1 -------------------------------------------------------------------------------- /tools/artifacts/testResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/testResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/test_symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/artifacts/test_symbols.ps1 -------------------------------------------------------------------------------- /tools/dotnet-test-cloud.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/dotnet-test-cloud.ps1 -------------------------------------------------------------------------------- /tools/publish-CodeCov.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/publish-CodeCov.ps1 -------------------------------------------------------------------------------- /tools/test.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/test.runsettings -------------------------------------------------------------------------------- /tools/variables/BusinessGroupName.ps1: -------------------------------------------------------------------------------- 1 | 'Visual Studio - VS Core' 2 | -------------------------------------------------------------------------------- /tools/variables/DotNetSdkVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/DotNetSdkVersion.ps1 -------------------------------------------------------------------------------- /tools/variables/InsertJsonValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/InsertJsonValues.ps1 -------------------------------------------------------------------------------- /tools/variables/InsertPropsValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/InsertPropsValues.ps1 -------------------------------------------------------------------------------- /tools/variables/InsertTargetBranch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/InsertTargetBranch.ps1 -------------------------------------------------------------------------------- /tools/variables/InsertVersionsValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/InsertVersionsValues.ps1 -------------------------------------------------------------------------------- /tools/variables/IsSigned.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/IsSigned.ps1 -------------------------------------------------------------------------------- /tools/variables/LocLanguages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/LocLanguages.ps1 -------------------------------------------------------------------------------- /tools/variables/ProfilingInputsDropName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/ProfilingInputsDropName.ps1 -------------------------------------------------------------------------------- /tools/variables/SymbolsFeatureName.ps1: -------------------------------------------------------------------------------- 1 | 'Microsoft.Windows.CsWin32' 2 | -------------------------------------------------------------------------------- /tools/variables/VstsDropNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/VstsDropNames.ps1 -------------------------------------------------------------------------------- /tools/variables/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/_all.ps1 -------------------------------------------------------------------------------- /tools/variables/_define.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/tools/variables/_define.ps1 -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CsWin32/HEAD/version.json --------------------------------------------------------------------------------