Skip to content

Commit d082081

Browse files
authored
Merge pull request #3 from GalvinPython/1-v1010-improvements
Update to V2
2 parents 4b13989 + afa1e49 commit d082081

16 files changed

+419
-111
lines changed

.GITIGNORE

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,4 +395,7 @@ FodyWeavers.xsd
395395
*.msp
396396

397397
# JetBrains Rider
398-
*.sln.iml
398+
*.sln.iml
399+
400+
### Custom project files
401+
icons/

DeleteJavaCheck.sln

Lines changed: 0 additions & 25 deletions
This file was deleted.

DeleteJavaCheck/DeleteJavaCheck.csproj

Lines changed: 0 additions & 22 deletions
This file was deleted.

DeleteJavaCheck/Program.cs

Lines changed: 0 additions & 37 deletions
This file was deleted.

DeleteJavaCheck/icon32.ico

-284 Bytes
Binary file not shown.

DeleteJavaCheck/location.txt

Lines changed: 0 additions & 7 deletions
This file was deleted.

DeleteJavaCheckRewritten.sln

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.1.32414.318
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeleteJavaCheckRewritten", "DeleteJavaCheckRewritten\DeleteJavaCheckRewritten.csproj", "{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Release|Any CPU = Release|Any CPU
13+
Release|x64 = Release|x64
14+
Test|Any CPU = Test|Any CPU
15+
Test|x64 = Test|x64
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Debug|x64.ActiveCfg = Test|x64
21+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Debug|x64.Build.0 = Test|x64
22+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Release|Any CPU.Build.0 = Release|Any CPU
24+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Release|x64.ActiveCfg = Release|x64
25+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Release|x64.Build.0 = Release|x64
26+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Test|Any CPU.ActiveCfg = Test|Any CPU
27+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Test|Any CPU.Build.0 = Test|Any CPU
28+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Test|x64.ActiveCfg = Test|x64
29+
{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}.Test|x64.Build.0 = Test|x64
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
GlobalSection(ExtensibilityGlobals) = postSolution
35+
SolutionGuid = {CE903085-5624-4281-8FBC-6802981574D2}
36+
EndGlobalSection
37+
EndGlobal

DeleteJavaCheckRewritten/App.config

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
5+
</startup>
6+
<appSettings>
7+
<add key="customLocation" value=""/>
8+
</appSettings>
9+
</configuration>
Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
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>{20C772BD-6E61-41F5-93A1-24BCF8AA49E8}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>DeleteJavaCheckRewritten</RootNamespace>
10+
<AssemblyName>DeleteJavaCheckRewritten</AssemblyName>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
15+
<Deterministic>false</Deterministic>
16+
</PropertyGroup>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<PlatformTarget>AnyCPU</PlatformTarget>
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<OutputPath>bin\Debug\</OutputPath>
23+
<DefineConstants>DEBUG;TRACE</DefineConstants>
24+
<ErrorReport>prompt</ErrorReport>
25+
<WarningLevel>4</WarningLevel>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<PlatformTarget>AnyCPU</PlatformTarget>
29+
<DebugType>pdbonly</DebugType>
30+
<Optimize>true</Optimize>
31+
<OutputPath>bin\Release\</OutputPath>
32+
<DefineConstants>TRACE</DefineConstants>
33+
<ErrorReport>prompt</ErrorReport>
34+
<WarningLevel>4</WarningLevel>
35+
</PropertyGroup>
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Test|AnyCPU'">
37+
<DebugSymbols>true</DebugSymbols>
38+
<OutputPath>bin\Test\</OutputPath>
39+
<DefineConstants>DEBUG;TRACE</DefineConstants>
40+
<DebugType>full</DebugType>
41+
<PlatformTarget>AnyCPU</PlatformTarget>
42+
<LangVersion>7.3</LangVersion>
43+
<ErrorReport>prompt</ErrorReport>
44+
<Prefer32Bit>true</Prefer32Bit>
45+
</PropertyGroup>
46+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
47+
<DebugSymbols>true</DebugSymbols>
48+
<OutputPath>bin\x64\Debug\</OutputPath>
49+
<DefineConstants>DEBUG;TRACE</DefineConstants>
50+
<DebugType>full</DebugType>
51+
<PlatformTarget>x64</PlatformTarget>
52+
<LangVersion>7.3</LangVersion>
53+
<ErrorReport>prompt</ErrorReport>
54+
<Prefer32Bit>true</Prefer32Bit>
55+
</PropertyGroup>
56+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
57+
<OutputPath>bin\x64\Release\</OutputPath>
58+
<DefineConstants>TRACE</DefineConstants>
59+
<Optimize>true</Optimize>
60+
<DebugType>pdbonly</DebugType>
61+
<PlatformTarget>x64</PlatformTarget>
62+
<LangVersion>7.3</LangVersion>
63+
<ErrorReport>prompt</ErrorReport>
64+
<Prefer32Bit>true</Prefer32Bit>
65+
</PropertyGroup>
66+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Test|x64'">
67+
<DebugSymbols>true</DebugSymbols>
68+
<OutputPath>bin\x64\Test\</OutputPath>
69+
<DefineConstants>DEBUG;TRACE</DefineConstants>
70+
<DebugType>full</DebugType>
71+
<PlatformTarget>x64</PlatformTarget>
72+
<LangVersion>7.3</LangVersion>
73+
<ErrorReport>prompt</ErrorReport>
74+
<Prefer32Bit>true</Prefer32Bit>
75+
</PropertyGroup>
76+
<PropertyGroup>
77+
<ApplicationIcon>ico256.ico</ApplicationIcon>
78+
</PropertyGroup>
79+
<ItemGroup>
80+
<Reference Include="System" />
81+
<Reference Include="System.Configuration" />
82+
<Reference Include="System.Configuration.ConfigurationManager, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
83+
<HintPath>..\packages\System.Configuration.ConfigurationManager.7.0.0\lib\net462\System.Configuration.ConfigurationManager.dll</HintPath>
84+
</Reference>
85+
<Reference Include="System.Core" />
86+
<Reference Include="System.Data.OracleClient" />
87+
<Reference Include="System.Net" />
88+
<Reference Include="System.Security" />
89+
<Reference Include="System.Security.AccessControl, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
90+
<HintPath>..\packages\System.Security.AccessControl.6.0.0\lib\net461\System.Security.AccessControl.dll</HintPath>
91+
</Reference>
92+
<Reference Include="System.Security.Permissions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
93+
<HintPath>..\packages\System.Security.Permissions.7.0.0\lib\net462\System.Security.Permissions.dll</HintPath>
94+
</Reference>
95+
<Reference Include="System.Security.Principal.Windows, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
96+
<HintPath>..\packages\System.Security.Principal.Windows.5.0.0\lib\net461\System.Security.Principal.Windows.dll</HintPath>
97+
</Reference>
98+
<Reference Include="System.ServiceProcess" />
99+
<Reference Include="System.Transactions" />
100+
<Reference Include="System.Xml.Linq" />
101+
<Reference Include="System.Data.DataSetExtensions" />
102+
<Reference Include="Microsoft.CSharp" />
103+
<Reference Include="System.Data" />
104+
<Reference Include="System.Net.Http" />
105+
<Reference Include="System.Xml" />
106+
<Reference Include="WindowsBase" />
107+
</ItemGroup>
108+
<ItemGroup>
109+
<Compile Include="Program.cs" />
110+
<Compile Include="Properties\AssemblyInfo.cs" />
111+
</ItemGroup>
112+
<ItemGroup>
113+
<None Include="App.config" />
114+
<None Include="packages.config" />
115+
</ItemGroup>
116+
<ItemGroup>
117+
<Content Include="ico256.ico" />
118+
</ItemGroup>
119+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
120+
</Project>

0 commit comments

Comments
 (0)