Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Added icon
Browse files Browse the repository at this point in the history
  • Loading branch information
weespin committed Aug 4, 2018
1 parent 1c35da9 commit bde1e5a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions AcapellaDownloader/AcapellaDownloader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Costura, Version=2.0.1.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL">
<HintPath>..\packages\Costura.Fody.2.0.1\lib\net452\Costura.dll</HintPath>
Expand Down Expand Up @@ -93,6 +96,9 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="icon.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Fody.3.0.3\build\Fody.targets" Condition="Exists('..\packages\Fody.3.0.3\build\Fody.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
Expand Down
1 change: 0 additions & 1 deletion AcapellaDownloader/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
using System.Windows.Forms;
using NAudio.Wave;
using Newtonsoft.Json;
using WillFromAfarDownloader;

namespace AcapellaDownloader
{
Expand Down
Binary file added AcapellaDownloader/icon.ico
Binary file not shown.
8 changes: 4 additions & 4 deletions UnitTests/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using System.Diagnostics;
using AcapellaDownloader;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NUnit.Framework;
using WillFromAfarDownloader;
using Assert = NUnit.Framework.Assert;
using TestContext = NUnit.Framework.TestContext;

Expand All @@ -20,13 +20,13 @@ public void CheckVoices()
public bool ParseAllVoices()
{
var result = false;
WillFromAfarDownloader.Voices.Load();
Voices.Load();
foreach (var voicelist in Voices.VoiceList)
{
if (WillFromAfarDownloader.Utils.Parse("123 312", voicelist.VoiceFile) == "")
if (Utils.Parse("123 312", voicelist.VoiceFile) == "")
{
TestContext.WriteLine(voicelist.Name);

return false;
}
}

Expand Down

0 comments on commit bde1e5a

Please sign in to comment.