Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 2db08ade authored by Michael KRISPER's avatar Michael KRISPER
Browse files

General optimizations in project files

parent 2c8b15e2
No related branches found
No related tags found
No related merge requests found
Showing
with 19 additions and 55 deletions
......@@ -12,7 +12,7 @@
<!-- The following settings are used as default values for ALL projects -->
<PropertyGroup>
<TargetFrameworks>net45;net48</TargetFrameworks>
<TargetFrameworks>net45;net48;net5.0</TargetFrameworks>
<VersionPrefix>$(MainProductVersion).$([System.DateTime]::UtcNow.Subtract($([System.DateTime]::new(2015,1,1))).Days)</VersionPrefix>
<Authors>Graz University of Technology</Authors>
<Company>European Union</Company>
......
......@@ -37,8 +37,6 @@
<!-- All files for net48 -->
<Net48VECTO Include="$(SolutionDir)VECTO\bin\Release\net48\*.exe*"/>
<Net48VECTO Include="$(SolutionDir)VECTO\bin\Release\net48\*.dll*"/>
<Net48HashingTool Include="$(SolutionDir)HashingTool\bin\Release\net48\*.exe*"/>
<Net48HashingTool Include="$(SolutionDir)HashingTool\bin\Release\net48\*.dll*"/>
<Net48HashingTool Include="$(SolutionDir)HashingCmd\bin\Release\net48\*.exe*"/>
<Net48HashingTool Include="$(SolutionDir)HashingCmd\bin\Release\net48\*.dll*"/>
<Net48VectoCommandLine Include="$(SolutionDir)VectoConsole\bin\Release\net48\*.exe*"/>
......@@ -59,9 +57,6 @@
<VectoCommandLine Include="$(SolutionDir)VectoConsole\bin\Release\net5.0\vectocmd.*" Exclude="*.dev.json"/>
<VectoCommandLine Include="$(SolutionDir)VectoConsole\bin\Release\net5.0\*.dll"/>
<VectoCommandLine Include="$(SolutionDir)VectoConsole\bin\Release\net5.0\runtimes\**\*.*"/>
<HashingTool Include="$(SolutionDir)HashingTool\bin\Release\net5.0-windows\HashingTool.*" Exclude="*.dev.json"/>
<HashingTool Include="$(SolutionDir)HashingTool\bin\Release\net5.0-windows\*.dll"/>
<HashingTool Include="$(SolutionDir)HashingTool\bin\Release\net5.0-windows\runtimes\**\*.*"/>
<HashingTool Include="$(SolutionDir)HashingCmd\bin\Release\net5.0\hashingcmd.*" Exclude="*.dev.json"/>
<HashingTool Include="$(SolutionDir)HashingCmd\bin\Release\net5.0\*.dll"/>
<HashingTool Include="$(SolutionDir)HashingCmd\bin\Release\net5.0\runtimes\**\*.*"/>
......@@ -122,6 +117,5 @@
<Target Name="CleanVectoDeploy" AfterTargets="Clean">
<RemoveDir Directories="$(SolutionDir)Deploy" Condition="Exists('$(SolutionDir)Deploy')"/>
<Delete Files="$(SolutionDir)$(CurrentDate)-VECTO-$(Version).zip" Condition="Exists('$(SolutionDir)$(CurrentDate)-VECTO-$(Version).zip')"/>
</Target>
</Project>
\ No newline at end of file
......@@ -8,7 +8,6 @@
<AssemblyName>hashingcmd</AssemblyName>
<DefineConstants />
<OutputType>Exe</OutputType>
<TargetFrameworks>net45;net48;net5.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
......
......@@ -7,9 +7,10 @@
<OutputType>WinExe</OutputType>
<RootNamespace>HashingTool</RootNamespace>
<AssemblyName>HashingTool</AssemblyName>
<DefineConstants />
<UseWPF>true</UseWPF>
<TargetFrameworks>net45;net48;net5.0-windows</TargetFrameworks>
<TargetFrameworks>net45</TargetFrameworks>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<ApplicationIcon>HashingIcon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
......@@ -27,5 +28,4 @@
<Resource Include="HashingIcon.ico" />
<Resource Include="Resources\EuropeanCommission.jpg" />
</ItemGroup>
</Project>
\ No newline at end of file
......@@ -3,7 +3,6 @@
<OutputType>Exe</OutputType>
<RootNamespace>DeclarationCycleZip</RootNamespace>
<AssemblyName>DeclarationCycleZip</AssemblyName>
<DefineConstants />
<TargetFrameworks>net5.0</TargetFrameworks>
</PropertyGroup>
......
......@@ -3,7 +3,6 @@
<OutputType>Exe</OutputType>
<RootNamespace>GraphDrawer</RootNamespace>
<AssemblyName>GraphDrawer</AssemblyName>
<DefineConstants />
<TargetFrameworks>net5.0-windows</TargetFrameworks>
</PropertyGroup>
......
......@@ -2,14 +2,9 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks />
<TargetFramework>net45</TargetFramework>
<TargetFrameworks>net45</TargetFrameworks>
<AssemblyName>hashingcmd</AssemblyName>
<ApplicationIcon></ApplicationIcon>
<PackageIconUrl />
<RootNamespace>TUGraz.VECTO</RootNamespace>
<ApplicationIcon>Icon2.ico</ApplicationIcon>
<StartupObject />
</PropertyGroup>
</Project>
Tools/HashingCmdStart/Icon2.ico

4.19 KiB

Tools/HashingToolStart/HashingIcon.ico

4.19 KiB

......@@ -2,13 +2,10 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks />
<TargetFramework>net45</TargetFramework>
<TargetFrameworks>net45</TargetFrameworks>
<AssemblyName>HashingTool</AssemblyName>
<ApplicationIcon>Icon2.ico</ApplicationIcon>
<PackageIconUrl />
<ApplicationIcon>HashingIcon.ico</ApplicationIcon>
<RootNamespace>TUGraz.VECTO</RootNamespace>
<StartupObject />
</PropertyGroup>
</Project>
Tools/HashingToolStart/Icon2.ico

4.19 KiB

......@@ -18,13 +18,14 @@ namespace TUGraz.VECTO
private static string GetHighestNETVersion()
{
if (SupportsNet50()) {
return "net50";
}
//todo mk2022-02-17 hashing tool currently only works under net45. this has to be fixed.
//if (SupportsNet50()) {
// return "net50";
//}
if (SupportsNet48()) {
return "net48";
}
//if (SupportsNet48()) {
// return "net48";
//}
return "net45";
}
......
......@@ -3,7 +3,6 @@
<OutputType>Exe</OutputType>
<RootNamespace>LicenceHeader</RootNamespace>
<AssemblyName>LicenceHeader</AssemblyName>
<DefineConstants />
<TargetFrameworks>net5.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
......
......@@ -2,13 +2,10 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks />
<TargetFramework>net45</TargetFramework>
<TargetFrameworks>net45</TargetFrameworks>
<AssemblyName>vectocmd</AssemblyName>
<ApplicationIcon>Icon2.ico</ApplicationIcon>
<PackageIconUrl />
<RootNamespace>TUGraz.VECTO</RootNamespace>
<StartupObject />
</PropertyGroup>
</Project>
......@@ -2,13 +2,10 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks />
<TargetFramework>net45</TargetFramework>
<TargetFrameworks>net45</TargetFrameworks>
<AssemblyName>VECTOMultistage</AssemblyName>
<ApplicationIcon>Icon2.ico</ApplicationIcon>
<PackageIconUrl />
<RootNamespace>TUGraz.VECTO</RootNamespace>
<StartupObject />
</PropertyGroup>
</Project>
......@@ -2,14 +2,11 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks />
<TargetFramework>net45</TargetFramework>
<TargetFrameworks>net45</TargetFrameworks>
<AssemblyName>VECTO</AssemblyName>
<ApplicationIcon>Icon2.ico</ApplicationIcon>
<PackageIconUrl />
<RootNamespace>TUGraz.VECTO</RootNamespace>
<Configurations>Debug;Release;Deploy</Configurations>
<StartupObject />
</PropertyGroup>
</Project>
......@@ -4,14 +4,13 @@
<StartupObject>Sub Main</StartupObject>
<RootNamespace>TUGraz.VECTO</RootNamespace>
<AssemblyName>VECTO</AssemblyName>
<DefineConstants />
<ApplicationIcon>Resources\Icon2.ico</ApplicationIcon>
<OptionStrict>On</OptionStrict>
<UseWindowsForms>true</UseWindowsForms>
<MyType>WindowsForms</MyType>
<DefineDebug>false</DefineDebug>
<DefineTrace>false</DefineTrace>
<TargetFrameworks>net45;net48;net5.0-windows</TargetFrameworks>
<!-- The GUI Editor of Visual Studio 2019 has problems with multitargets.
If you want to change GUI stuff, then only use one target (uncomment the following line): -->
<!--<TargetFrameworks>net5.0-windows</TargetFrameworks>-->
</PropertyGroup>
......
......@@ -6,7 +6,6 @@
<OutputType>WinExe</OutputType>
<RootNamespace>VECTO3GUI2020</RootNamespace>
<AssemblyName>VECTOMultistage</AssemblyName>
<DefineConstants />
<ApplicationIcon>Resources\Icons\Icon2.ico</ApplicationIcon>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
......
......@@ -2,7 +2,6 @@
<PropertyGroup>
<RootNamespace>VectoAuxiliariesTests</RootNamespace>
<AssemblyName>VectoAuxiliariesTests</AssemblyName>
<DefineConstants />
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
<OptionExplicit>On</OptionExplicit>
<OptionCompare>Binary</OptionCompare>
......
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Version Information (only needed if it differs from Global VECTO Version)-->
<!--<MainProductVersion>0.0.0</MainProductVersion>-->
<!--<VersionPrefix>$(MainProductVersion).$([System.DateTime]::UtcNow.Subtract($([System.DateTime]::new(2015,1,1))).Days)</VersionPrefix>-->
<RootNamespace>TUGraz.VectoCommon</RootNamespace>
<AssemblyName>VectoCommon</AssemblyName>
<DefineConstants />
<TargetFrameworks>net45;net48;net5.0</TargetFrameworks>
<TargetFramework />
</PropertyGroup>
<ItemGroup>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment