This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
howtocontributefaq.html
53 lines (48 loc) · 1.73 KB
/
howtocontributefaq.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: documentation
title: How to contribute walkthrough
teaser: Be part of the appcceleration!
navigation:
- name: Overview
link: howtocontribute.html
- name: Walkthrough
link: howtocontributewalkthrough.html
- name: Concepts
link: howtocontributeconcepts.html
- name: PowerShell Commandlets
link: howtocontributecommandlets.html
- name: FAQ
link: howtocontributefaq.html
---
<h1>FAQ</h1>
<b>Coding</b>
<ul>
<li><a href="howtocontributefaq.html#codingguidelines">Do I really have to follow all this coding guidelines (StyleCop, MSBuild Tasks, Unit Tests, ...)</a></li>
</ul>
<b>Nuget</b>
<ul>
<li><a href="howtocontributefaq.html#restorefailed">Nuget packages cannot be restored</a></li>
</ul>
<h2>Coding</h2>
<h3 id="codingguidelines">Do I really have to follow all this coding guidelines (StyleCop, MSBuild Tasks, Unit Tests, ...)</h3>
<p>
We value the benefits of coding guidelines higher than the resulting needed effort.
We like that the code looks the same no matter who wrote it. This makes reading other people's code much easier.
</p>
<p>
If you struggle too much with these guidelines, ignore them and open a pull request.
We will do the rest.
But of course, it will take much more time to integrate your changes.
</p>
<h2>Nuget</h2>
<h3 id="restorefailed">Nuget packages cannot be restored</h3>
<p>
During development, all Appccelerate nuget packages are staged on the Appccelerate nuget feed on MyGet.
</p>
<p>
The nuget.config inside every Appccelerate project should tell nuget to go look there for packages.
Unfortunately, this does not work on every machine.
</p>
<p>
If you cannot restore the packages, add a package source for the feed <code>https://www.myget.org/F/appccelerate/</code>
</p>