├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml ├── dotnet.json ├── release.yml └── workflows │ ├── build.yml │ ├── changelog.config │ ├── changelog.yml │ ├── combine-prs.yml │ ├── docs.yml │ ├── dotnet-env.yml │ ├── dotnet-file.yml │ ├── includes.yml │ ├── publish.yml │ └── triage.yml ├── .gitignore ├── .netconfig ├── Directory.Build.rsp ├── NuGetizer.slnx ├── Nugetizer-3000.png ├── assets └── css │ └── style.scss ├── changelog.md ├── img ├── complete.png ├── dotnet-nugetize-xplat.png ├── dotnet-nugetize.png ├── nugetize-authoring-1.png ├── nugetize-authoring-2.png ├── nugetize-authoring-3.png ├── nugetize-authoring-4.png ├── nugetizer-100.png ├── nugetizer-128.png ├── nugetizer-256.png ├── nugetizer-32.png ├── nugetizer-512.png ├── nugetizer.svg ├── packaging.png └── quickstart.png ├── license.txt ├── monolyth.md ├── osmfeula.txt ├── readme.md ├── samples └── LibAnalyzerTasks │ ├── Analyzer │ ├── Analyzer.csproj │ ├── Properties │ │ └── launchSettings.json │ └── SampleGenerator.cs │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── LibAnalyzerTasks.sln │ ├── Library │ ├── Library.csproj │ ├── MyLibrary.cs │ └── readme.md │ ├── Tasks │ ├── LibAnalyzerTasks.props │ ├── LibAnalyzerTasks.targets │ └── Tasks.csproj │ └── Tests │ ├── Sample.cs │ └── Tests.csproj └── src ├── .editorconfig ├── CodeAnalysis ├── CodeAnalysis.csproj ├── MetadataAnalyzer.cs ├── NuGetizer.CodeAnalysis.targets ├── Resources.resx └── ThisAssembly.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.props ├── Directory.targets ├── ILRepack.targets ├── NuGetizer.Tasks ├── AssignPackagePath.cs ├── CreatePackage.cs ├── EntryTarget.cs ├── EvaluateWildcards.cs ├── Extensions.cs ├── FrameworkAssemblyReferenceComparer.cs ├── IncludesResolver.cs ├── InferImplicitPackageReference.cs ├── MetadataName.cs ├── NuGetizer.Authoring.NoTargets.Defaults.targets ├── NuGetizer.Authoring.NoTargets.props ├── NuGetizer.Authoring.NoTargets.targets ├── NuGetizer.Authoring.props ├── NuGetizer.Authoring.targets ├── NuGetizer.Cleanup.targets ├── NuGetizer.Compatibility.props ├── NuGetizer.Inference.props ├── NuGetizer.Inference.targets ├── NuGetizer.MultiTargeting.props ├── NuGetizer.MultiTargeting.targets ├── NuGetizer.PackageMetadata.targets ├── NuGetizer.PackageValidation.targets ├── NuGetizer.Shared.targets ├── NuGetizer.Tasks.Pack.targets ├── NuGetizer.Tasks.csproj ├── NuGetizer.Tasks.targets ├── NuGetizer.Version.props ├── NuGetizer.props ├── NuGetizer.targets ├── Resources.resx ├── System │ └── Dynamic │ │ └── DynamicReflection.cs ├── WriteItemsToFile.cs ├── dotnet-nugetize.props ├── dotnet-nugetize.targets └── readme.md ├── NuGetizer.Tests ├── AssignPackagePathTests.cs ├── Builder.NuGetizer.cs ├── Builder.cs ├── Content │ ├── Common │ │ ├── footer.md │ │ └── header.md │ ├── readme.md │ ├── sections.md │ └── url.md ├── CreatePackageTests.cs ├── IncludesResolverTests.cs ├── InferImplicitPackageReferenceTests.cs ├── InlineProjectTests.cs ├── ModuleInitializer.cs ├── ModuleInitializerAttribute.cs ├── NuGetizer.Tests.csproj ├── NuGetizer.Tests.targets ├── Scenarios │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Scenario.props │ ├── Scenario.targets │ ├── _._ │ ├── given_a_complex_pack │ │ ├── a.csproj │ │ ├── b.csproj │ │ ├── c.csproj │ │ ├── d.csproj │ │ ├── e.csproj │ │ └── pack.sln │ ├── given_a_custom_build_project │ │ ├── Readme.txt │ │ └── build.proj │ ├── given_a_framework_library │ │ └── framework_library_project.csproj │ ├── given_a_library │ │ ├── Api │ │ │ └── Api.cs │ │ ├── Class1.cs │ │ └── library.csproj │ ├── given_a_library_with_content │ │ ├── Resources │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxxhdpi │ │ │ │ └── Icon.png │ │ ├── content-copy-with-include-false.txt │ │ ├── content-copy-with-include-true.txt │ │ ├── content-copy-with-kind.txt │ │ ├── content-copy.txt │ │ ├── content-with-include-false.txt │ │ ├── content-with-include-true.txt │ │ ├── content-with-kind.txt │ │ ├── content-with-packagepath.txt │ │ ├── content-with-targetpath.txt │ │ ├── content.txt │ │ ├── contentFiles │ │ │ └── cs │ │ │ │ └── monoandroid │ │ │ │ ├── content.cs │ │ │ │ └── none.cs │ │ ├── footer.md │ │ ├── library_with_content.csproj │ │ ├── none-copy-with-include-false.txt │ │ ├── none-copy-with-include-true.txt │ │ ├── none-copy-with-kind.txt │ │ ├── none-copy.txt │ │ ├── none-with-include-false.txt │ │ ├── none-with-include-true.txt │ │ ├── none-with-kind.txt │ │ ├── none-with-packagepath.txt │ │ ├── none.txt │ │ ├── quickstart │ │ │ ├── any-any.txt │ │ │ ├── any-non-tfm.txt │ │ │ ├── cs-any.txt │ │ │ └── fs-tfm.txt │ │ ├── readme.md │ │ └── relative │ │ │ ├── content-copy-with-kind.txt │ │ │ ├── content-copy.txt │ │ │ ├── none-copy-with-kind.txt │ │ │ └── none-copy.txt │ ├── given_a_library_with_non_nugetized_reference │ │ ├── a.csproj │ │ ├── b.sln │ │ ├── b │ │ │ ├── Resources.es-AR.resx │ │ │ ├── Resources.resx │ │ │ └── b.csproj │ │ ├── c.csproj │ │ └── d.csproj │ ├── given_a_library_with_private_assets_reference │ │ └── a.csproj │ ├── given_a_library_with_project_reference │ │ ├── a.csproj │ │ └── b.csproj │ ├── given_a_localized_library │ │ ├── Resources.es-AR.resx │ │ ├── Resources.resx │ │ └── library.csproj │ ├── given_a_multi_platform_solution │ │ ├── android │ │ │ ├── forms.android.csproj │ │ │ └── quickstart │ │ │ │ ├── sample.cs │ │ │ │ ├── sample.fs │ │ │ │ └── sample.vb │ │ ├── common │ │ │ └── common.csproj │ │ ├── docs │ │ │ ├── gettingstarted.html │ │ │ └── overview │ │ │ │ └── index.html │ │ ├── forms.proj │ │ ├── forms.sln │ │ ├── ios │ │ │ └── forms.ios.csproj │ │ └── net │ │ │ └── forms.net.csproj │ ├── given_a_multitargeting_library │ │ └── library.csproj │ ├── given_a_packaging_project │ │ ├── a.nuproj │ │ ├── b.sln │ │ ├── b │ │ │ ├── Resources.es-AR.resx │ │ │ ├── Resources.resx │ │ │ ├── b.csproj │ │ │ ├── b.xml │ │ │ └── quickstart │ │ │ │ └── overview │ │ │ │ └── readme.txt │ │ ├── c.csproj │ │ ├── d.csproj │ │ └── e.csproj │ ├── given_a_packaging_project_with_netstandard │ │ ├── a.nuproj │ │ └── b │ │ │ └── b.csproj │ ├── given_duplicate_package_files │ │ ├── a.csproj │ │ ├── b.csproj │ │ └── content │ │ │ ├── content.txt │ │ │ ├── inferred.txt │ │ │ └── web │ │ │ └── js │ │ │ └── nuget.js │ ├── given_multitargeting_libraries │ │ ├── common.csproj │ │ ├── uilibrary.csproj │ │ └── uishared.csproj │ ├── given_transitive_projects │ │ ├── Project1.csproj │ │ ├── Project2.csproj │ │ └── Project3.csproj │ └── readme.md ├── TargetsTests.cs ├── Utilities │ ├── Base62.cs │ ├── ManifestContentFilesComparer.cs │ ├── ManifestFileComparer.cs │ ├── MockBuildEngine.cs │ ├── PackageDependencyComparer.cs │ ├── PackageDependencyGroupComparer.cs │ ├── TargetFrameworks.cs │ ├── TaskItemExtensions.cs │ └── TestOutputLogger.cs ├── UtilitiesTests.cs ├── given_a_complex_pack.cs ├── given_a_custom_build_project.cs ├── given_a_framework_library.cs ├── given_a_library.cs ├── given_a_library_with_content.cs ├── given_a_library_with_non_nugetized_reference.cs ├── given_a_library_with_private_assets_reference.cs ├── given_a_library_with_project_reference.cs ├── given_a_localized_library.cs ├── given_a_multi_platform_solution.cs ├── given_a_multitargeting_library.cs ├── given_a_notargets_sdk_project.cs ├── given_a_packaging_project.cs ├── given_a_packaging_project_with_netstandard.cs ├── given_a_tool_project.cs ├── given_duplicate_package_files.cs ├── given_multitargeting_libraries.cs ├── given_packagereferences.cs ├── given_packinference.cs ├── given_projectreferences.cs ├── given_sourcelink.cs ├── given_transitive_projects.cs └── xunit.runner.json ├── dotnet-nugetize ├── DotnetMuxer.cs ├── EmbeddedResource.cs ├── Program.cs ├── Properties │ ├── .gitignore │ ├── Resources.es.resx │ └── Resources.resx ├── System │ └── Base62.cs ├── after.sln.targets ├── dotnet-nugetize.csproj └── readme.md ├── icon.png └── kzu.snk /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/dotnet.json -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/changelog.config -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/combine-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/combine-prs.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/dotnet-env.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/dotnet-file.yml -------------------------------------------------------------------------------- /.github/workflows/includes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/includes.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.github/workflows/triage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/.netconfig -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /NuGetizer.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/NuGetizer.slnx -------------------------------------------------------------------------------- /Nugetizer-3000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/Nugetizer-3000.png -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/changelog.md -------------------------------------------------------------------------------- /img/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/complete.png -------------------------------------------------------------------------------- /img/dotnet-nugetize-xplat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/dotnet-nugetize-xplat.png -------------------------------------------------------------------------------- /img/dotnet-nugetize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/dotnet-nugetize.png -------------------------------------------------------------------------------- /img/nugetize-authoring-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetize-authoring-1.png -------------------------------------------------------------------------------- /img/nugetize-authoring-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetize-authoring-2.png -------------------------------------------------------------------------------- /img/nugetize-authoring-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetize-authoring-3.png -------------------------------------------------------------------------------- /img/nugetize-authoring-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetize-authoring-4.png -------------------------------------------------------------------------------- /img/nugetizer-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetizer-100.png -------------------------------------------------------------------------------- /img/nugetizer-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetizer-128.png -------------------------------------------------------------------------------- /img/nugetizer-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetizer-256.png -------------------------------------------------------------------------------- /img/nugetizer-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetizer-32.png -------------------------------------------------------------------------------- /img/nugetizer-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetizer-512.png -------------------------------------------------------------------------------- /img/nugetizer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/nugetizer.svg -------------------------------------------------------------------------------- /img/packaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/packaging.png -------------------------------------------------------------------------------- /img/quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/img/quickstart.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/license.txt -------------------------------------------------------------------------------- /monolyth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/monolyth.md -------------------------------------------------------------------------------- /osmfeula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/osmfeula.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/readme.md -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Analyzer/Analyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Analyzer/Analyzer.csproj -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Analyzer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Analyzer/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Analyzer/SampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Analyzer/SampleGenerator.cs -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Directory.Build.props -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Directory.Build.targets -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/LibAnalyzerTasks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/LibAnalyzerTasks.sln -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Library/Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Library/Library.csproj -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Library/MyLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Library/MyLibrary.cs -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Library/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Library/readme.md -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Tasks/LibAnalyzerTasks.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Tasks/LibAnalyzerTasks.props -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Tasks/LibAnalyzerTasks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Tasks/LibAnalyzerTasks.targets -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Tasks/Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Tasks/Tasks.csproj -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Tests/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Tests/Sample.cs -------------------------------------------------------------------------------- /samples/LibAnalyzerTasks/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/samples/LibAnalyzerTasks/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- 1 | dotnet_diagnostic.IDE1100.severity = none 2 | -------------------------------------------------------------------------------- /src/CodeAnalysis/CodeAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/CodeAnalysis/CodeAnalysis.csproj -------------------------------------------------------------------------------- /src/CodeAnalysis/MetadataAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/CodeAnalysis/MetadataAnalyzer.cs -------------------------------------------------------------------------------- /src/CodeAnalysis/NuGetizer.CodeAnalysis.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/CodeAnalysis/NuGetizer.CodeAnalysis.targets -------------------------------------------------------------------------------- /src/CodeAnalysis/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/CodeAnalysis/Resources.resx -------------------------------------------------------------------------------- /src/CodeAnalysis/ThisAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/CodeAnalysis/ThisAssembly.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Directory.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/Directory.props -------------------------------------------------------------------------------- /src/Directory.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/Directory.targets -------------------------------------------------------------------------------- /src/ILRepack.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/ILRepack.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/AssignPackagePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/AssignPackagePath.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/CreatePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/CreatePackage.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/EntryTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/EntryTarget.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/EvaluateWildcards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/EvaluateWildcards.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/Extensions.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/FrameworkAssemblyReferenceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/FrameworkAssemblyReferenceComparer.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/IncludesResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/IncludesResolver.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/InferImplicitPackageReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/InferImplicitPackageReference.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/MetadataName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/MetadataName.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Authoring.NoTargets.Defaults.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Authoring.NoTargets.Defaults.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Authoring.NoTargets.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Authoring.NoTargets.props -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Authoring.NoTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Authoring.NoTargets.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Authoring.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Authoring.props -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Authoring.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Authoring.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Cleanup.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Cleanup.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Compatibility.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Compatibility.props -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Inference.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Inference.props -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Inference.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Inference.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.MultiTargeting.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.MultiTargeting.props -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.MultiTargeting.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.MultiTargeting.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.PackageMetadata.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.PackageMetadata.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.PackageValidation.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.PackageValidation.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Shared.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Shared.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Tasks.Pack.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Tasks.Pack.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Tasks.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Tasks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Tasks.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.Version.props -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.props -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/NuGetizer.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/NuGetizer.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/Resources.resx -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/System/Dynamic/DynamicReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/System/Dynamic/DynamicReflection.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/WriteItemsToFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/WriteItemsToFile.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/dotnet-nugetize.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/dotnet-nugetize.props -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/dotnet-nugetize.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/dotnet-nugetize.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tasks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tasks/readme.md -------------------------------------------------------------------------------- /src/NuGetizer.Tests/AssignPackagePathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/AssignPackagePathTests.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Builder.NuGetizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Builder.NuGetizer.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Builder.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Content/Common/footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Content/Common/footer.md -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Content/Common/header.md: -------------------------------------------------------------------------------- 1 | the-header -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Content/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Content/readme.md -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Content/sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Content/sections.md -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Content/url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Content/url.md -------------------------------------------------------------------------------- /src/NuGetizer.Tests/CreatePackageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/CreatePackageTests.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/IncludesResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/IncludesResolverTests.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/InferImplicitPackageReferenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/InferImplicitPackageReferenceTests.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/InlineProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/InlineProjectTests.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/ModuleInitializerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/ModuleInitializerAttribute.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/NuGetizer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/NuGetizer.Tests.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/NuGetizer.Tests.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/NuGetizer.Tests.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/Directory.Build.props -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/Directory.Build.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/Scenario.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/Scenario.props -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/Scenario.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/Scenario.targets -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_complex_pack/a.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_complex_pack/a.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_complex_pack/b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_complex_pack/b.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_complex_pack/c.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_complex_pack/c.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_complex_pack/d.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_complex_pack/d.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_complex_pack/e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_complex_pack/e.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_complex_pack/pack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_complex_pack/pack.sln -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_custom_build_project/Readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_custom_build_project/build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_custom_build_project/build.proj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_framework_library/framework_library_project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_framework_library/framework_library_project.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library/Api/Api.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library/Class1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library/library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library/library.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-xxhdpi/Icon.png -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_content/Resources/drawable-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-copy-with-include-false.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-copy-with-include-true.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-copy-with-kind.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-copy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-with-include-false.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-with-include-true.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-with-kind.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-with-packagepath.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content-with-targetpath.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/content.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/contentFiles/cs/monoandroid/content.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/contentFiles/cs/monoandroid/none.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/footer.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/library_with_content.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_content/library_with_content.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none-copy-with-include-false.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none-copy-with-include-true.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none-copy-with-kind.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none-copy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none-with-include-false.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none-with-include-true.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none-with-kind.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none-with-packagepath.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/none.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/quickstart/any-any.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/quickstart/any-non-tfm.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/quickstart/cs-any.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/quickstart/fs-tfm.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_content/readme.md -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/relative/content-copy-with-kind.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/relative/content-copy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/relative/none-copy-with-kind.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_content/relative/none-copy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/a.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/a.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/b.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/b.sln -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/b/Resources.es-AR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/b/Resources.es-AR.resx -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/b/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/b/Resources.resx -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/b/b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/b/b.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/c.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/c.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/d.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_non_nugetized_reference/d.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_private_assets_reference/a.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_private_assets_reference/a.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_project_reference/a.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_project_reference/a.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_library_with_project_reference/b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_library_with_project_reference/b.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_localized_library/Resources.es-AR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_localized_library/Resources.es-AR.resx -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_localized_library/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_localized_library/Resources.resx -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_localized_library/library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_localized_library/library.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/android/forms.android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/android/forms.android.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/android/quickstart/sample.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/android/quickstart/sample.fs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/android/quickstart/sample.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/common/common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/common/common.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/docs/gettingstarted.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/docs/overview/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/forms.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/forms.proj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/forms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/forms.sln -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/ios/forms.ios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/ios/forms.ios.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/net/forms.net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_multi_platform_solution/net/forms.net.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_multitargeting_library/library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_multitargeting_library/library.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/a.nuproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/a.nuproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b.sln -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/Resources.es-AR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/Resources.es-AR.resx -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/Resources.resx -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/b.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/b.xml -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/b/quickstart/overview/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/c.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/c.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/d.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/d.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project/e.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project/e.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project_with_netstandard/a.nuproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project_with_netstandard/a.nuproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_a_packaging_project_with_netstandard/b/b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_a_packaging_project_with_netstandard/b/b.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_duplicate_package_files/a.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_duplicate_package_files/a.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_duplicate_package_files/b.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_duplicate_package_files/b.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_duplicate_package_files/content/content.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_duplicate_package_files/content/inferred.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_duplicate_package_files/content/web/js/nuget.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_multitargeting_libraries/common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_multitargeting_libraries/common.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_multitargeting_libraries/uilibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_multitargeting_libraries/uilibrary.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_multitargeting_libraries/uishared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_multitargeting_libraries/uishared.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_transitive_projects/Project1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_transitive_projects/Project1.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_transitive_projects/Project2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_transitive_projects/Project2.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/given_transitive_projects/Project3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/given_transitive_projects/Project3.csproj -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Scenarios/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Scenarios/readme.md -------------------------------------------------------------------------------- /src/NuGetizer.Tests/TargetsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/TargetsTests.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/Base62.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/Base62.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/ManifestContentFilesComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/ManifestContentFilesComparer.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/ManifestFileComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/ManifestFileComparer.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/MockBuildEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/MockBuildEngine.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/PackageDependencyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/PackageDependencyComparer.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/PackageDependencyGroupComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/PackageDependencyGroupComparer.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/TargetFrameworks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/TargetFrameworks.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/TaskItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/TaskItemExtensions.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/Utilities/TestOutputLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/Utilities/TestOutputLogger.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/UtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/UtilitiesTests.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_complex_pack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_complex_pack.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_custom_build_project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_custom_build_project.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_framework_library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_framework_library.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_library.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_library_with_content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_library_with_content.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_library_with_non_nugetized_reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_library_with_non_nugetized_reference.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_library_with_private_assets_reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_library_with_private_assets_reference.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_library_with_project_reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_library_with_project_reference.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_localized_library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_localized_library.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_multi_platform_solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_multi_platform_solution.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_multitargeting_library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_multitargeting_library.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_notargets_sdk_project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_notargets_sdk_project.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_packaging_project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_packaging_project.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_packaging_project_with_netstandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_packaging_project_with_netstandard.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_a_tool_project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_a_tool_project.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_duplicate_package_files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_duplicate_package_files.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_multitargeting_libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_multitargeting_libraries.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_packagereferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_packagereferences.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_packinference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_packinference.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_projectreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_projectreferences.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_sourcelink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_sourcelink.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/given_transitive_projects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/given_transitive_projects.cs -------------------------------------------------------------------------------- /src/NuGetizer.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/NuGetizer.Tests/xunit.runner.json -------------------------------------------------------------------------------- /src/dotnet-nugetize/DotnetMuxer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/DotnetMuxer.cs -------------------------------------------------------------------------------- /src/dotnet-nugetize/EmbeddedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/EmbeddedResource.cs -------------------------------------------------------------------------------- /src/dotnet-nugetize/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/Program.cs -------------------------------------------------------------------------------- /src/dotnet-nugetize/Properties/.gitignore: -------------------------------------------------------------------------------- 1 | launchSettings.json -------------------------------------------------------------------------------- /src/dotnet-nugetize/Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/Properties/Resources.es.resx -------------------------------------------------------------------------------- /src/dotnet-nugetize/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/Properties/Resources.resx -------------------------------------------------------------------------------- /src/dotnet-nugetize/System/Base62.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/System/Base62.cs -------------------------------------------------------------------------------- /src/dotnet-nugetize/after.sln.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/after.sln.targets -------------------------------------------------------------------------------- /src/dotnet-nugetize/dotnet-nugetize.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/dotnet-nugetize.csproj -------------------------------------------------------------------------------- /src/dotnet-nugetize/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/dotnet-nugetize/readme.md -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/kzu.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/nugetizer/HEAD/src/kzu.snk --------------------------------------------------------------------------------