Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed Oct 13, 2015
1 parent 568b0f3 commit 8b2b725
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- [ ] File globbing pattern support (#49)
- [ ] Show yellow InfoBar when initializing
- [ ] Default settings for source maps (#120)
- [0] Clean Error List on _Clean_
- [x] Clean Error List on _Clean_
- [x] Use new VS2015 Error List API
- [x] MSBuild: Changed build ordering (#124)
- [x] Compile only when files have changed (#121)
Expand Down
15 changes: 15 additions & 0 deletions src/WebCompilerTest/AssemblyLoad.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using WebCompiler;

namespace WebCompilerTest
{
[TestClass]
public class AssemblyLoad
{
[AssemblyInitialize]
public static void Initialize(TestContext context)
{
Telemetry.Enabled = false;
}
}
}
1 change: 1 addition & 0 deletions src/WebCompilerTest/WebCompilerTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
</Otherwise>
</Choose>
<ItemGroup>
<Compile Include="AssemblyLoad.cs" />
<Compile Include="Compile\IcedCoffeeScriptTest.cs" />
<Compile Include="Compile\CoffeeScriptTest.cs" />
<Compile Include="Compile\CompileServiceTest.cs" />
Expand Down

0 comments on commit 8b2b725

Please sign in to comment.