Skip to content

Commit

Permalink
Merge pull request #4 from mauriciobellon/DeployProject-Setup-Vdproj
Browse files Browse the repository at this point in the history
Setup works.
  • Loading branch information
mauriciobellon authored Jun 24, 2024
2 parents d27b491 + 082cd48 commit cb85a62
Show file tree
Hide file tree
Showing 5 changed files with 881 additions and 4 deletions.
2 changes: 1 addition & 1 deletion App.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
</windowsSettings>
</application>
</assembly>
</assembly>
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,18 @@ Rounded Windows Edges is a Windows utility that enhances your user interface by

5. Open a pull request to the main repository.

## To Do

- [x] Add Icon Tray
- [x] Add Settings on Icons Tray
- [x] Add Autostart
- [x] Add support for multiple monitors
- [x] Add support for high DPI displays
- [x] Create Installation Package
- [ ] Add Screenshot to Readme
- [ ] FEATURE: Autorun after Installation
- [ ] ISSUE: Config only applies changes on app restart

## License

This project is licensed under the GNU General Public License v3.0. See the [LICENSE](LICENSE) file for details.
Expand Down
31 changes: 29 additions & 2 deletions RoundedWindowsEdges.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
Expand All @@ -26,7 +27,6 @@
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
Expand Down Expand Up @@ -55,11 +55,38 @@
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<TargetZone>LocalIntranet</TargetZone>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>false</GenerateManifests>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration.Install" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
Expand Down Expand Up @@ -130,7 +157,7 @@
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 und x64%29</ProductName>
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
Expand Down
17 changes: 16 additions & 1 deletion RoundedWindowsEdges.sln
Original file line number Diff line number Diff line change
@@ -1,19 +1,34 @@
Microsoft Visual Studio Solution File, Format Version 12.00

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.10.34928.147
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoundedWindowsEdges", "RoundedWindowsEdges.csproj", "{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{4A36BF48-7829-4610-ACFE-1CEFE52CAB1C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}.Debug|x86.ActiveCfg = Debug|x86
{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}.Debug|x86.Build.0 = Debug|x86
{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}.Release|Any CPU.Build.0 = Release|Any CPU
{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}.Release|x86.ActiveCfg = Release|Any CPU
{3CFFC6A7-B746-459B-8B1B-08DD3268DEF5}.Release|x86.Build.0 = Release|Any CPU
{4A36BF48-7829-4610-ACFE-1CEFE52CAB1C}.Debug|Any CPU.ActiveCfg = Debug
{4A36BF48-7829-4610-ACFE-1CEFE52CAB1C}.Debug|x86.ActiveCfg = Debug
{4A36BF48-7829-4610-ACFE-1CEFE52CAB1C}.Release|Any CPU.ActiveCfg = Release
{4A36BF48-7829-4610-ACFE-1CEFE52CAB1C}.Release|Any CPU.Build.0 = Release
{4A36BF48-7829-4610-ACFE-1CEFE52CAB1C}.Release|x86.ActiveCfg = Release
{4A36BF48-7829-4610-ACFE-1CEFE52CAB1C}.Release|x86.Build.0 = Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading

0 comments on commit cb85a62

Please sign in to comment.