Skip to content

Commit 0cbf610

Browse files
authored
Continuous Integration Publish: 9cc18ec
Merge pull request #102 from cake-contrib/feature/GH-99 (GH-99) modified CCG0007
1 parent 3fb3a66 commit 0cbf610

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

feed.atom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
<title>CakeContrib.Guidelines</title>
55
<link rel="self" href="https://cake-contrib.github.io/CakeContrib.Guidelines" />
66
<rights>2021</rights>
7-
<updated>2021-03-01T21:27:51Z</updated>
7+
<updated>2021-03-03T19:50:40Z</updated>
88
</feed>

feed.rss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link>https://cake-contrib.github.io/CakeContrib.Guidelines</link>
66
<description />
77
<copyright>2021</copyright>
8-
<pubDate>Mon, 01 Mar 2021 21:27:51 GMT</pubDate>
9-
<lastBuildDate>Mon, 01 Mar 2021 21:27:51 GMT</lastBuildDate>
8+
<pubDate>Wed, 03 Mar 2021 19:50:40 GMT</pubDate>
9+
<lastBuildDate>Wed, 03 Mar 2021 19:50:40 GMT</lastBuildDate>
1010
</channel>
1111
</rss>

guidelines/RecommendedReferences.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ <h2 id="table-of-contents">Table of Contents</h2>
129129
</ul>
130130
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
131131
<h2 id="goals">Goals</h2>
132-
<p>To have consistency in code-style among the different tools/plugins the use of Analysers is recommended, especially the use of <a href="https://github.com/DotNetAnalyzers/StyleCopAnalyzers">StyleCop</a>. Additionally code-style anlysis using StyleCopy (and code generation in the IDE) should be properly configured using a <code>stylecop.json</code>-file as well as <code>.editorconfig</code>-file, respectively.</p>
132+
<p>To have consistency in code-style among the different tools/plugins the use of Analysers is recommended, especially the use of <a href="https://github.com/DotNetAnalyzers/StyleCopAnalyzers">StyleCop</a>. Additionally code-style analysis using StyleCopy (and code generation in the IDE) should be properly configured using a <code>stylecop.json</code>-file as well as <code>.editorconfig</code>-file, respectively.</p>
133133
<p>Example-Files can be found at:</p>
134134
<ul>
135135
<li><a href="./examples/StyleCopJson"><code>stylecop.json</code></a></li>

guidelines/TargetFramework.html

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,15 @@ <h2 id="table-of-contents">Table of Contents</h2>
133133
</ul>
134134
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
135135
<h2 id="goals">Goals</h2>
136-
<p>Each addin should have maximum compatibility when being used. Toward that end some Framework versions are required and some others are
136+
<p>Each addin/module should have maximum compatibility when being used. Toward that end some Framework versions are required and some others are
137137
suggested, depending on the Cake.Core version that is being referenced.</p>
138138
<h3 id="required-suggested-versions">Required / Suggested versions</h3>
139-
<p>Depending on the referenced <code>Cake.Core</code>-version different target versions are required and/or suggested.
139+
<p>Depending on the package type and the referenced <code>Cake.Core</code>-version different target versions are required and/or suggested.
140140
Missing a required target version will raise <a href="../rules/ccg0007">CCG0007</a> as an error
141141
while missing a suggested target version will raise <a href="../rules/ccg0007">CCG0007</a> as a warning.</p>
142142
<ul>
143+
<li>Package type: addin
144+
<ul>
143145
<li>Cake.Core &lt; 1.0.0
144146
<ul>
145147
<li>Required: <code>netstandard2.0</code></li>
@@ -162,6 +164,13 @@ <h3 id="required-suggested-versions">Required / Suggested versions</h3>
162164
</ul>
163165
</li>
164166
</ul>
167+
</li>
168+
<li>Package type: module
169+
<ul>
170+
<li>Required: <code>netstandard2.0</code></li>
171+
</ul>
172+
</li>
173+
</ul>
165174
<h2 id="related-rules">Related rules</h2>
166175
<ul>
167176
<li><a href="../rules/ccg0007">CCG0007</a></li>

0 commit comments

Comments
 (0)