Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Commit 1a3bbd9

Browse files
Add files via upload
1 parent aa242ac commit 1a3bbd9

11 files changed

Lines changed: 107 additions & 0 deletions
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{37F05F9E-330C-4303-AD7B-BA48D5DC95E0}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>BMBF_Corrupted_songs_detector</RootNamespace>
10+
<AssemblyName>BMBF Corrupted songs detector</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27+
<PlatformTarget>AnyCPU</PlatformTarget>
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<ItemGroup>
36+
<Reference Include="System" />
37+
<Reference Include="System.Core" />
38+
<Reference Include="System.Windows.Forms" />
39+
<Reference Include="System.Xml.Linq" />
40+
<Reference Include="System.Data.DataSetExtensions" />
41+
<Reference Include="Microsoft.CSharp" />
42+
<Reference Include="System.Data" />
43+
<Reference Include="System.Net.Http" />
44+
<Reference Include="System.Xml" />
45+
</ItemGroup>
46+
<ItemGroup>
47+
<Compile Include="Program.cs" />
48+
<Compile Include="Properties\AssemblyInfo.cs" />
49+
</ItemGroup>
50+
<ItemGroup>
51+
<None Include="App.config" />
52+
</ItemGroup>
53+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
54+
</Project>

Program.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,14 @@ static void Main(string[] args)
6666
found.Add(err);
6767
}
6868
}
69+
else if(line.Contains("System.IO.FileStream"))
70+
{
71+
err = "FileStream Problem at line " + i;
72+
if (!found.Contains(err))
73+
{
74+
found.Add(err);
75+
}
76+
}
6977
}
7078
else if(line.Substring(25, 3) == "MSG")
7179
{
@@ -92,6 +100,7 @@ static void Main(string[] args)
92100
}
93101
Console.WriteLine("\ncommon fixes:");
94102
Console.WriteLine("- Questom asset problem: tell the person to delete the songs with a unsupported cover format. If that doesn't help tell them to delete songs that failed to load.");
103+
Console.WriteLine("- FileStream Problem: tell the persong to enable both permssions for BMBF in sidequest");
95104
Console.WriteLine("\n---Log Start---");
96105
foreach(String c in found)
97106
{

Properties/AssemblyInfo.cs

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// Allgemeine Informationen über eine Assembly werden über die folgenden
6+
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
7+
// die einer Assembly zugeordnet sind.
8+
[assembly: AssemblyTitle("BMBF Corrupted songs detector")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("HP Inc.")]
12+
[assembly: AssemblyProduct("BMBF Corrupted songs detector")]
13+
[assembly: AssemblyCopyright("Copyright © HP Inc. 2020")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
18+
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
19+
// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
20+
[assembly: ComVisible(false)]
21+
22+
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
23+
[assembly: Guid("37f05f9e-330c-4303-ad7b-ba48d5dc95e0")]
24+
25+
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
26+
//
27+
// Hauptversion
28+
// Nebenversion
29+
// Buildnummer
30+
// Revision
31+
//
32+
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
33+
// indem Sie "*" wie unten gezeigt eingeben:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]
512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
277526e6458b7c0ee0115c49957c0929904d1374
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
D:\Visual Studio\BMBF Corrupted songs detector\BMBF Corrupted songs detector\bin\Debug\BMBF Corrupted songs detector.exe.config
2+
D:\Visual Studio\BMBF Corrupted songs detector\BMBF Corrupted songs detector\bin\Debug\BMBF Corrupted songs detector.exe
3+
D:\Visual Studio\BMBF Corrupted songs detector\BMBF Corrupted songs detector\bin\Debug\BMBF Corrupted songs detector.pdb
4+
D:\Visual Studio\BMBF Corrupted songs detector\BMBF Corrupted songs detector\obj\Debug\BMBF Corrupted songs detector.csprojAssemblyReference.cache
5+
D:\Visual Studio\BMBF Corrupted songs detector\BMBF Corrupted songs detector\obj\Debug\BMBF Corrupted songs detector.csproj.CoreCompileInputs.cache
6+
D:\Visual Studio\BMBF Corrupted songs detector\BMBF Corrupted songs detector\obj\Debug\BMBF Corrupted songs detector.exe
7+
D:\Visual Studio\BMBF Corrupted songs detector\BMBF Corrupted songs detector\obj\Debug\BMBF Corrupted songs detector.pdb
Binary file not shown.
9 KB
Binary file not shown.
23.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)