├── .gitattributes ├── .gitignore ├── GitVersionConfig.yaml ├── LICENSE.txt ├── NuGet.Config ├── NuSpec.ReferenceGenerator.nuspec ├── ReferenceGenerator.sln ├── ReferenceGenerator.sln.DotSettings ├── appveyor.yml ├── readme.md ├── scripts ├── Build.ps1 ├── BuildPackageLayout.cmd └── Install-NuGet.ps1 ├── src ├── ReferenceGenerator.Engine │ ├── AssemblyInfoFile.cs │ ├── Diagnostics.cs │ ├── ExtensionMethods.cs │ ├── FrameworkList.cs │ ├── FrameworkListCollection.cs │ ├── Package.cs │ ├── PackageWithReferences.cs │ ├── ProjectEngine.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Reference.cs │ ├── ReferenceGenerator.Engine.csproj │ ├── Res │ │ ├── .NETCore,Version=v4.5.1 │ │ │ └── FrameworkList.xml │ │ ├── .NETCore,Version=v4.5 │ │ │ └── FrameworkList.xml │ │ ├── .NETFramework,Version=v4.5.1 │ │ │ └── FrameworkList.xml │ │ ├── .NETFramework,Version=v4.5 │ │ │ └── FrameworkList.xml │ │ ├── .NETFramework,Version=v4.6.1 │ │ │ └── FrameworkList.xml │ │ ├── .NETFramework,Version=v4.6.2 │ │ │ └── FrameworkList.xml │ │ ├── .NETFramework,Version=v4.6.3 │ │ │ └── FrameworkList.xml │ │ ├── .NETFramework,Version=v4.6 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.5,Profile=Profile111 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.5,Profile=Profile259 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.5,Profile=Profile49 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.5,Profile=Profile7 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.5,Profile=Profile78 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.6,Profile=Profile151 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.6,Profile=Profile157 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.6,Profile=Profile31 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.6,Profile=Profile32 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.6,Profile=Profile44 │ │ │ └── FrameworkList.xml │ │ ├── .NETPortable,Version=v4.6,Profile=Profile84 │ │ │ └── FrameworkList.xml │ │ ├── LastNonSemanticVersions.xml │ │ ├── MonoAndroid,Version=v1.0 │ │ │ └── FrameworkList.xml │ │ ├── MonoTouch,Version=v1.0 │ │ │ └── FrameworkList.xml │ │ ├── Windows,Version=v8.0 │ │ │ └── FrameworkList.xml │ │ ├── Windows,Version=v8.1 │ │ │ └── FrameworkList.xml │ │ ├── WindowsPhone,Version=v8.0 │ │ │ ├── FrameworkList.xml │ │ │ └── FrameworkList_Supplement.xml │ │ ├── WindowsPhoneApp,Version=v8.1 │ │ │ └── FrameworkList.xml │ │ ├── Xamarin.Mac,Version=v2.0 │ │ │ └── FrameworkList.xml │ │ ├── Xamarin.TVOS,Version=v1.0 │ │ │ └── FrameworkList.xml │ │ ├── Xamarin.WatchOS,Version=v1.0 │ │ │ └── FrameworkList.xml │ │ ├── Xamarin.iOS,Version=v1.0 │ │ │ └── FrameworkList.xml │ │ └── baseline.packages.targets │ ├── SemVer │ │ ├── LambdaEqualityComparer.cs │ │ ├── SemanticVersion.cs │ │ ├── SemanticVersionBuildMetaData.cs │ │ └── SemanticVersionPreReleaseTag.cs │ ├── UnixNotSupportedException.cs │ └── project.json └── ReferenceGenerator │ ├── App.config │ ├── NuSpec.ReferenceGenerator.targets │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ReferenceGenerator.csproj │ └── project.json └── tests ├── SampleClassLibrary ├── Class1.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleClassLibrary.csproj ├── SampleClassLibrary.nuspec ├── SampleClassLibrary.withns.nuspec └── project.json ├── SampleCoreLibrary ├── Class1.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleCoreLibrary.csproj └── packages.config ├── SampleCrossCompiledLibrary ├── Class1.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleCrossCompiledLibrary.nuspec ├── SampleCrossCompiledLibrary.xproj └── project.json ├── SampleNetStandard11Library ├── Class1.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleNetStandard11Library.csproj ├── SampleNetStandard11Library.nuspec └── project.json ├── SampleProjJsonPcl ├── Class1.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleProjJsonPcl.csproj ├── SampleProjJsonPcl.nuspec └── project.json └── SampleUwpLibrary ├── Class1.cs ├── Properties ├── AssemblyInfo.cs └── SampleUwpLibrary.rd.xml ├── SampleUwpLibrary.csproj ├── SampleUwpLibrary.nuspec └── project.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /GitVersionConfig.yaml: -------------------------------------------------------------------------------- 1 | legacy-semver-padding: 2 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/NuGet.Config -------------------------------------------------------------------------------- /NuSpec.ReferenceGenerator.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/NuSpec.ReferenceGenerator.nuspec -------------------------------------------------------------------------------- /ReferenceGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/ReferenceGenerator.sln -------------------------------------------------------------------------------- /ReferenceGenerator.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/ReferenceGenerator.sln.DotSettings -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/scripts/Build.ps1 -------------------------------------------------------------------------------- /scripts/BuildPackageLayout.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/scripts/BuildPackageLayout.cmd -------------------------------------------------------------------------------- /scripts/Install-NuGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/scripts/Install-NuGet.ps1 -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/AssemblyInfoFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/AssemblyInfoFile.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Diagnostics.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/FrameworkList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/FrameworkList.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/FrameworkListCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/FrameworkListCollection.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Package.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/PackageWithReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/PackageWithReferences.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/ProjectEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/ProjectEngine.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Properties/Resources.resx -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Reference.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/ReferenceGenerator.Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/ReferenceGenerator.Engine.csproj -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETCore,Version=v4.5.1/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETCore,Version=v4.5.1/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETCore,Version=v4.5/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETCore,Version=v4.5/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.5.1/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.5.1/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.5/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.5/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.6.1/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.6.1/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.6.2/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.6.2/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.6.3/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.6.3/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.6/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETFramework,Version=v4.6/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile111/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile111/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile259/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile259/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile49/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile49/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile7/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile7/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile78/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.5,Profile=Profile78/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile151/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile151/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile157/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile157/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile31/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile31/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile32/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile32/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile44/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile44/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile84/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/.NETPortable,Version=v4.6,Profile=Profile84/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/LastNonSemanticVersions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/LastNonSemanticVersions.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/MonoAndroid,Version=v1.0/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/MonoAndroid,Version=v1.0/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/MonoTouch,Version=v1.0/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/MonoTouch,Version=v1.0/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/Windows,Version=v8.0/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/Windows,Version=v8.0/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/Windows,Version=v8.1/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/Windows,Version=v8.1/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/WindowsPhone,Version=v8.0/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/WindowsPhone,Version=v8.0/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/WindowsPhone,Version=v8.0/FrameworkList_Supplement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/WindowsPhone,Version=v8.0/FrameworkList_Supplement.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/WindowsPhoneApp,Version=v8.1/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/WindowsPhoneApp,Version=v8.1/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/Xamarin.Mac,Version=v2.0/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/Xamarin.Mac,Version=v2.0/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/Xamarin.TVOS,Version=v1.0/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/Xamarin.TVOS,Version=v1.0/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/Xamarin.WatchOS,Version=v1.0/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/Xamarin.WatchOS,Version=v1.0/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/Xamarin.iOS,Version=v1.0/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/Xamarin.iOS,Version=v1.0/FrameworkList.xml -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/Res/baseline.packages.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/Res/baseline.packages.targets -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/SemVer/LambdaEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/SemVer/LambdaEqualityComparer.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/SemVer/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/SemVer/SemanticVersion.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/SemVer/SemanticVersionBuildMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/SemVer/SemanticVersionBuildMetaData.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/SemVer/SemanticVersionPreReleaseTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/SemVer/SemanticVersionPreReleaseTag.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/UnixNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/UnixNotSupportedException.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator.Engine/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator.Engine/project.json -------------------------------------------------------------------------------- /src/ReferenceGenerator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator/App.config -------------------------------------------------------------------------------- /src/ReferenceGenerator/NuSpec.ReferenceGenerator.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator/NuSpec.ReferenceGenerator.targets -------------------------------------------------------------------------------- /src/ReferenceGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator/Program.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ReferenceGenerator/ReferenceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator/ReferenceGenerator.csproj -------------------------------------------------------------------------------- /src/ReferenceGenerator/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/src/ReferenceGenerator/project.json -------------------------------------------------------------------------------- /tests/SampleClassLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleClassLibrary/Class1.cs -------------------------------------------------------------------------------- /tests/SampleClassLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleClassLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/SampleClassLibrary/SampleClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleClassLibrary/SampleClassLibrary.csproj -------------------------------------------------------------------------------- /tests/SampleClassLibrary/SampleClassLibrary.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleClassLibrary/SampleClassLibrary.nuspec -------------------------------------------------------------------------------- /tests/SampleClassLibrary/SampleClassLibrary.withns.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleClassLibrary/SampleClassLibrary.withns.nuspec -------------------------------------------------------------------------------- /tests/SampleClassLibrary/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleClassLibrary/project.json -------------------------------------------------------------------------------- /tests/SampleCoreLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCoreLibrary/Class1.cs -------------------------------------------------------------------------------- /tests/SampleCoreLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCoreLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/SampleCoreLibrary/SampleCoreLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCoreLibrary/SampleCoreLibrary.csproj -------------------------------------------------------------------------------- /tests/SampleCoreLibrary/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCoreLibrary/packages.config -------------------------------------------------------------------------------- /tests/SampleCrossCompiledLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCrossCompiledLibrary/Class1.cs -------------------------------------------------------------------------------- /tests/SampleCrossCompiledLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCrossCompiledLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/SampleCrossCompiledLibrary/SampleCrossCompiledLibrary.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCrossCompiledLibrary/SampleCrossCompiledLibrary.nuspec -------------------------------------------------------------------------------- /tests/SampleCrossCompiledLibrary/SampleCrossCompiledLibrary.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCrossCompiledLibrary/SampleCrossCompiledLibrary.xproj -------------------------------------------------------------------------------- /tests/SampleCrossCompiledLibrary/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleCrossCompiledLibrary/project.json -------------------------------------------------------------------------------- /tests/SampleNetStandard11Library/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleNetStandard11Library/Class1.cs -------------------------------------------------------------------------------- /tests/SampleNetStandard11Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleNetStandard11Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/SampleNetStandard11Library/SampleNetStandard11Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleNetStandard11Library/SampleNetStandard11Library.csproj -------------------------------------------------------------------------------- /tests/SampleNetStandard11Library/SampleNetStandard11Library.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleNetStandard11Library/SampleNetStandard11Library.nuspec -------------------------------------------------------------------------------- /tests/SampleNetStandard11Library/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleNetStandard11Library/project.json -------------------------------------------------------------------------------- /tests/SampleProjJsonPcl/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleProjJsonPcl/Class1.cs -------------------------------------------------------------------------------- /tests/SampleProjJsonPcl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleProjJsonPcl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/SampleProjJsonPcl/SampleProjJsonPcl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleProjJsonPcl/SampleProjJsonPcl.csproj -------------------------------------------------------------------------------- /tests/SampleProjJsonPcl/SampleProjJsonPcl.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleProjJsonPcl/SampleProjJsonPcl.nuspec -------------------------------------------------------------------------------- /tests/SampleProjJsonPcl/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleProjJsonPcl/project.json -------------------------------------------------------------------------------- /tests/SampleUwpLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleUwpLibrary/Class1.cs -------------------------------------------------------------------------------- /tests/SampleUwpLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleUwpLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/SampleUwpLibrary/Properties/SampleUwpLibrary.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleUwpLibrary/Properties/SampleUwpLibrary.rd.xml -------------------------------------------------------------------------------- /tests/SampleUwpLibrary/SampleUwpLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleUwpLibrary/SampleUwpLibrary.csproj -------------------------------------------------------------------------------- /tests/SampleUwpLibrary/SampleUwpLibrary.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleUwpLibrary/SampleUwpLibrary.nuspec -------------------------------------------------------------------------------- /tests/SampleUwpLibrary/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clairernovotny/ReferenceGenerator/HEAD/tests/SampleUwpLibrary/project.json --------------------------------------------------------------------------------