-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try'n'a get the XPackageReferences to work..
- Loading branch information
Showing
6 changed files
with
107 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<Project InitialTargets="MakeProjectReferenceItemsFromCustomItemReferenceTypes"> | ||
<ItemDefinitionGroup> | ||
<SourceGeneratorPackageReference> | ||
<CopyLocal>true</CopyLocal> | ||
<ExcludeAssets>Native;BuildTransitive;BuildMultitargeting;ContentFiles;Compile;Runtime</ExcludeAssets> | ||
<GeneratePathProperty>true</GeneratePathProperty> | ||
<IncludeAssets>Analyzers;Build</IncludeAssets> | ||
<Pack>true</Pack> | ||
<PrivateAssets>All</PrivateAssets> | ||
</SourceGeneratorPackageReference> | ||
<SourceGeneratorProjectReference> | ||
<CopyLocal>true</CopyLocal> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<CopyToPublishDirectory>Always</CopyToPublishDirectory> | ||
<GeneratePathProperty>true</GeneratePathProperty> | ||
<OutputItemType>Analyzer</OutputItemType> | ||
<Pack>true</Pack> | ||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
<SetConfiguration>Configuration=$(Configuration)</SetConfiguration> | ||
<Targets>Restore;Build;Pack</Targets> | ||
</SourceGeneratorProjectReference> | ||
<SourceCodePackageReference> | ||
<CopyLocal>true</CopyLocal> | ||
<ExcludeAssets>Analyzers;Runtime;Native</ExcludeAssets> | ||
<GeneratePathProperty>true</GeneratePathProperty> | ||
<IncludeAssets>ContentFiles;Build;BuildTransitive;BuildMultitargeting</IncludeAssets> | ||
<Pack>true</Pack> | ||
<PrivateAssets>All</PrivateAssets> | ||
</SourceCodePackageReference> | ||
<UsingsPackageReference> | ||
<CopyLocal>true</CopyLocal> | ||
<ExcludeAssets>ContentFiles;Native;Analyzers</ExcludeAssets> | ||
<GeneratePathProperty>true</GeneratePathProperty> | ||
<IncludeAssets>Build;BuildTransitive;BuildMultitargeting;Runtime;Compile</IncludeAssets> | ||
<Pack>true</Pack> | ||
<PrivateAssets>None</PrivateAssets> | ||
</UsingsPackageReference> | ||
</ItemDefinitionGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageReference Include="@(SourceGeneratorPackageReference)"> | ||
<CopyLocal>true</CopyLocal> | ||
<ExcludeAssets>Native;BuildTransitive;BuildMultitargeting;ContentFiles;Compile;Runtime</ExcludeAssets> | ||
<GeneratePathProperty>true</GeneratePathProperty> | ||
<IncludeAssets>Analyzers;Build</IncludeAssets> | ||
<Pack>true</Pack> | ||
<PrivateAssets>All</PrivateAssets> | ||
</PackageReference> | ||
<ProjectReference Include="@(SourceGeneratorProjectReference)"> | ||
<CopyLocal>true</CopyLocal> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<CopyToPublishDirectory>Always</CopyToPublishDirectory> | ||
<GeneratePathProperty>true</GeneratePathProperty> | ||
<OutputItemType>Analyzer</OutputItemType> | ||
<Pack>true</Pack> | ||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
<SetConfiguration>Configuration=$(Configuration)</SetConfiguration> | ||
<Targets>Restore;Build;Pack</Targets> | ||
</ProjectReference> | ||
<PackageReference Include="@(SourceCodePackageReference)"> | ||
<CopyLocal>true</CopyLocal> | ||
<ExcludeAssets>Analyzers;Runtime;Native</ExcludeAssets> | ||
<GeneratePathProperty>true</GeneratePathProperty> | ||
<IncludeAssets>ContentFiles;Build;BuildTransitive;BuildMultitargeting</IncludeAssets> | ||
<Pack>true</Pack> | ||
<PrivateAssets>All</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="@(UsingsPackageReference)"> | ||
<CopyLocal>true</CopyLocal> | ||
<ExcludeAssets>ContentFiles;Native;Analyzers</ExcludeAssets> | ||
<GeneratePathProperty>true</GeneratePathProperty> | ||
<IncludeAssets>Build;BuildTransitive;BuildMultitargeting;Runtime;Compile</IncludeAssets> | ||
<Pack>true</Pack> | ||
<PrivateAssets>None</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<!-- | ||
* GenerateMarkdownDocs.targets | ||
* | ||
* | ||
* Created: 2023-01-03-03:19:47 | ||
* Modified: 2023-01-03-03:19:47 | ||
* | ||
* | ||
* Author: David G. Moore, Jr. <[email protected]> | ||
* | ||
* | ||
* Copyright © 2022-2023 David G. Moore, Jr., All Rights Reserved | ||
* License: MIT (https://opensource.org/licenses/MIT) | ||
--> | ||
|
@@ -17,23 +17,23 @@ | |
<ItemGroup> | ||
<DocsParameter Include="generate-doc" /> | ||
<DocsParameter Include="'$(MSBuildProjectFullPath)'" /> | ||
<DocsParameter Include="==additional-xml-documentation './**/*.xml'" /> | ||
<DocsParameter Include="==file-log '$(FileLog)'" /> | ||
<DocsParameter Include="==file-log-verbosity diagnostic" /> | ||
<DocsParameter Include="==verbosity diagnostic" /> | ||
<DocsParameter Include="==additional-xml-documentation './**/*.xml'" /> | ||
<DocsParameter Include="==file-log '$(FileLog)'" /> | ||
<DocsParameter Include="==file-log-verbosity diagnostic" /> | ||
<DocsParameter Include="==verbosity diagnostic" /> | ||
<DocsParameter Include="==files-layout flat-namespaces" /> | ||
<DocsParameter Include="==group-by-common-namespace" /> | ||
<DocsParameter Include="==heading '$(Title)'" /> | ||
<DocsParameter Include="==inheritance-style horizontal" /> | ||
<DocsParameter Include="==host github" /> | ||
<DocsParameter Include="==ignored-names 'ThisAssembly'" /> | ||
<DocsParameter Include="==include-all-derived-types" /> | ||
<DocsParameter Include="==include-containing-namespace all" /> | ||
<DocsParameter Include="==include-ienumerable" /> | ||
<DocsParameter Include="==include-inherited-interface-members" /> | ||
<DocsParameter Include="==include-system-namespace" /> | ||
<DocsParameter Include="==max-derived-types 100" /> | ||
<DocsParameter Include="==output '$(DocsDir)'" /> | ||
<DocsParameter Include="==group-by-common-namespace" /> | ||
<DocsParameter Include="==heading '$(Title)'" /> | ||
<DocsParameter Include="==inheritance-style horizontal" /> | ||
<DocsParameter Include="==host github" /> | ||
<DocsParameter Include="==ignored-names 'ThisAssembly'" /> | ||
<DocsParameter Include="==include-all-derived-types" /> | ||
<DocsParameter Include="==include-containing-namespace all" /> | ||
<DocsParameter Include="==include-ienumerable" /> | ||
<DocsParameter Include="==include-inherited-interface-members" /> | ||
<DocsParameter Include="==include-system-namespace" /> | ||
<DocsParameter Include="==max-derived-types 100" /> | ||
<DocsParameter Include="==output '$(DocsDir)'" /> | ||
</ItemGroup> | ||
<Target Name="GenDocs"> | ||
<MakeDir Directories="$(DocsDir)" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project Condition="!$(GeneratePackageOnBuild)"> | ||
<Target Name="Pack" DependsOnTargets="$(PackDependsOn)" AfterTargets="$(PackDependsOn)" /> | ||
</Project> |