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

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

Suppressed Warning NU1701 (Compatibility mode for older libraries)

parent 1b12aa36
No related branches found
No related tags found
No related merge requests found
...@@ -76,13 +76,13 @@ ...@@ -76,13 +76,13 @@
<UserManual Include="$(SolutionDir)Documentation\Cdv_Generator_VECTO3.2.xlsx"/> <UserManual Include="$(SolutionDir)Documentation\Cdv_Generator_VECTO3.2.xlsx"/>
<ReleaseNotes Include="$(SolutionDir)Documentation\User Manual Source\Release Notes Vecto3.x.pdf"/> <ReleaseNotes Include="$(SolutionDir)Documentation\User Manual Source\Release Notes Vecto3.x.pdf"/>
<HashingTool Include="$(SolutionDir)HashingTool\bin\Release\$(TargetFramework)\HashingTool.exe"/> <HashingTool Include="$(SolutionDir)HashingTool\bin\Release\net45\HashingTool.exe"/>
<HashingTool Include="$(SolutionDir)HashingCmd\bin\Release\$(TargetFramework)\hashingcmd.exe"/> <HashingTool Include="$(SolutionDir)HashingCmd\bin\Release\net45\hashingcmd.exe"/>
<VectoConfigurationSample Include="$(SolutionDir)VECTO\install.ini"/> <VectoConfigurationSample Include="$(SolutionDir)VECTO\install.ini"/>
<VectoMultistage Include="$(SolutionDir)VECTO3GUI2020\bin\Release\$(TargetFramework)\VECTOMultistage.exe*"/> <VectoMultistage Include="$(SolutionDir)VECTO3GUI2020\bin\Release\net5.0-windows\VECTOMultistage.exe*"/>
<VectoMultistage Include="$(SolutionDir)VECTO3GUI2020\bin\Release\$(TargetFramework)\*.dll"/> <VectoMultistage Include="$(SolutionDir)VECTO3GUI2020\bin\Release\net5.0-windows\*.dll"/>
</ItemGroup> </ItemGroup>
<Message Text="@(VectoCommandLine)"/> <Message Text="@(VectoCommandLine)"/>
......
...@@ -9,18 +9,9 @@ ...@@ -9,18 +9,9 @@
<AssemblyName>hashingcmd</AssemblyName> <AssemblyName>hashingcmd</AssemblyName>
<DefineConstants /> <DefineConstants />
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFrameworks>net45;net48;net5.0</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\VectoCommon\VectoCommon\VectoCommon.csproj" /> <ProjectReference Include="..\VectoCommon\VectoCommon\VectoCommon.csproj" />
<ProjectReference Include="..\VectoCommon\VectoHashing\VectoHashing.csproj" /> <ProjectReference Include="..\VectoCommon\VectoHashing\VectoHashing.csproj" />
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
<AssemblyName>HashingTool</AssemblyName> <AssemblyName>HashingTool</AssemblyName>
<DefineConstants /> <DefineConstants />
<UseWPF>true</UseWPF> <UseWPF>true</UseWPF>
<TargetFrameworks>net45;net48;net5.0-windows</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
......
...@@ -20,16 +20,15 @@ ...@@ -20,16 +20,15 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="InteractiveDataDisplay.WPF" Version="1.0.0" /> <PackageReference Include="InteractiveDataDisplay.WPF" Version="1.0.0" NoWarn="NU1701" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
<PackageReference Include="Microsoft.Maps.MapControl.WPF" Version="1.0.0.3" />
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.1.2" /> <PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.1.2" />
<PackageReference Include="Microsoft.WindowsAPICodePack-Core" Version="1.1.0.2" /> <PackageReference Include="Microsoft.WindowsAPICodePack-Core" Version="1.1.0.2" NoWarn="NU1701" />
<PackageReference Include="Microsoft.WindowsAPICodePack-Shell" Version="1.1.0" /> <PackageReference Include="Microsoft.WindowsAPICodePack-Shell" Version="1.1.0" NoWarn="NU1701" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" /> <PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" NoWarn="NU1701" />
<PackageReference Include="Ninject" Version="3.3.4" /> <PackageReference Include="Ninject" Version="3.3.4" />
<PackageReference Include="Ninject.Extensions.Factory" Version="3.3.3" /> <PackageReference Include="Ninject.Extensions.Factory" Version="3.3.3" />
<PackageReference Include="PresentationFramework.Aero2" Version="1.0.1" /> <PackageReference Include="PresentationFramework.Aero2" Version="1.0.1" NoWarn="NU1701" />
<PackageReference Include="System.Reactive" Version="5.0.0" /> <PackageReference Include="System.Reactive" Version="5.0.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" /> <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
</ItemGroup> </ItemGroup>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<RootNamespace>TUGraz.VectoCore.ModelbasedTests</RootNamespace> <RootNamespace>TUGraz.VectoCore.ModelbasedTests</RootNamespace>
<AssemblyName>ModelbasedTests</AssemblyName> <AssemblyName>ModelbasedTests</AssemblyName>
<DefineConstants /> <DefineConstants />
<TargetFrameworks>net5.0</TargetFrameworks> <TargetFrameworks>net5.0-windows</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<RootNamespace>TUGraz.VectoCore.Tests</RootNamespace> <RootNamespace>TUGraz.VectoCore.Tests</RootNamespace>
<AssemblyName>VectoCoreTest</AssemblyName> <AssemblyName>VectoCoreTest</AssemblyName>
<DefineConstants /> <DefineConstants />
<TargetFrameworks>net5.0</TargetFrameworks> <TargetFrameworks>net5.0-windows</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <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