|
| 1 | +<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFrameworks>net40;net45;net46;net47;net48;netcoreapp3.1</TargetFrameworks> |
| 4 | + <OutputType>WinExe</OutputType> |
| 5 | + <UseWPF>true</UseWPF> |
| 6 | + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| 7 | + <AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath> |
| 8 | + <RootNamespace>ClipArtViewer</RootNamespace> |
| 9 | + <AssemblyName>ClipArtViewer</AssemblyName> |
| 10 | + <AppConfig Condition="'$(TargetFramework)' == 'net40'">App.net40.config</AppConfig> |
| 11 | + <AutoUnifyAssemblyReferences Condition="'$(TargetFramework)' == 'net40'">false</AutoUnifyAssemblyReferences> |
| 12 | + <Configurations>Debug;Release</Configurations> |
| 13 | + </PropertyGroup> |
| 14 | + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
| 15 | + <DebugType>full</DebugType> |
| 16 | + <DebugSymbols>true</DebugSymbols> |
| 17 | + <DefineConstants>DEBUG;TRACE</DefineConstants> |
| 18 | + <WarningLevel>4</WarningLevel> |
| 19 | + <OutputPath>Output\</OutputPath> |
| 20 | + </PropertyGroup> |
| 21 | + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
| 22 | + <DefineConstants>TRACE</DefineConstants> |
| 23 | + <WarningLevel>4</WarningLevel> |
| 24 | + <OutputPath>Output\</OutputPath> |
| 25 | + </PropertyGroup> |
| 26 | + <PropertyGroup> |
| 27 | + <ApplicationIcon>ClipArtViewer.ico</ApplicationIcon> |
| 28 | + </PropertyGroup> |
| 29 | + <ItemGroup> |
| 30 | + <ProjectReference Include="..\..\Source\SVGImage\DotNetProjects.SVGImage.VS2019.csproj" /> |
| 31 | + </ItemGroup> |
| 32 | + <ItemGroup> |
| 33 | + <Compile Update="Properties\Resources.Designer.cs"> |
| 34 | + <AutoGen>True</AutoGen> |
| 35 | + <DesignTime>True</DesignTime> |
| 36 | + <DependentUpon>Resources.resx</DependentUpon> |
| 37 | + </Compile> |
| 38 | + <Compile Update="Properties\Settings.Designer.cs"> |
| 39 | + <AutoGen>True</AutoGen> |
| 40 | + <DependentUpon>Settings.settings</DependentUpon> |
| 41 | + <DesignTimeSharedInput>True</DesignTimeSharedInput> |
| 42 | + </Compile> |
| 43 | + <EmbeddedResource Update="Properties\Resources.resx"> |
| 44 | + <Generator>ResXFileCodeGenerator</Generator> |
| 45 | + <LastGenOutput>Resources.Designer.cs</LastGenOutput> |
| 46 | + </EmbeddedResource> |
| 47 | + <None Update="Properties\Settings.settings"> |
| 48 | + <Generator>SettingsSingleFileGenerator</Generator> |
| 49 | + <LastGenOutput>Settings.Designer.cs</LastGenOutput> |
| 50 | + </None> |
| 51 | + </ItemGroup> |
| 52 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net40'"> |
| 53 | + <PackageReference Include="Microsoft.Bcl.Async" Version="1.0.168" /> |
| 54 | + <Reference Include="ShellFileDialogs"> |
| 55 | + <HintPath>..\..\Tests\Libs\net40\ShellFileDialogs.dll</HintPath> |
| 56 | + </Reference> |
| 57 | + <Reference Include="Notifications.Wpf"> |
| 58 | + <HintPath>..\..\Tests\Libs\net40\Notifications.Wpf.dll</HintPath> |
| 59 | + </Reference> |
| 60 | + </ItemGroup> |
| 61 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net45'"> |
| 62 | + <Reference Include="ShellFileDialogs"> |
| 63 | + <HintPath>..\..\Tests\Libs\net45\ShellFileDialogs.dll</HintPath> |
| 64 | + </Reference> |
| 65 | + <Reference Include="Notifications.Wpf"> |
| 66 | + <HintPath>..\..\Tests\Libs\net45\Notifications.Wpf.dll</HintPath> |
| 67 | + </Reference> |
| 68 | + </ItemGroup> |
| 69 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net46'"> |
| 70 | + <Reference Include="ShellFileDialogs"> |
| 71 | + <HintPath>..\..\Tests\Libs\net46\ShellFileDialogs.dll</HintPath> |
| 72 | + </Reference> |
| 73 | + <Reference Include="Notifications.Wpf"> |
| 74 | + <HintPath>..\..\Tests\Libs\net46\Notifications.Wpf.dll</HintPath> |
| 75 | + </Reference> |
| 76 | + </ItemGroup> |
| 77 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net47'"> |
| 78 | + <Reference Include="ShellFileDialogs"> |
| 79 | + <HintPath>..\..\Tests\Libs\net47\ShellFileDialogs.dll</HintPath> |
| 80 | + </Reference> |
| 81 | + <Reference Include="Notifications.Wpf"> |
| 82 | + <HintPath>..\..\Tests\Libs\net47\Notifications.Wpf.dll</HintPath> |
| 83 | + </Reference> |
| 84 | + </ItemGroup> |
| 85 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net48'"> |
| 86 | + <Reference Include="ShellFileDialogs"> |
| 87 | + <HintPath>..\..\Tests\Libs\net48\ShellFileDialogs.dll</HintPath> |
| 88 | + </Reference> |
| 89 | + <Reference Include="Notifications.Wpf"> |
| 90 | + <HintPath>..\..\Tests\Libs\net48\Notifications.Wpf.dll</HintPath> |
| 91 | + </Reference> |
| 92 | + </ItemGroup> |
| 93 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'"> |
| 94 | + <Reference Include="ShellFileDialogs"> |
| 95 | + <HintPath>..\..\Tests\Libs\netstandard2.1\ShellFileDialogs.dll</HintPath> |
| 96 | + </Reference> |
| 97 | + <Reference Include="Notifications.Wpf"> |
| 98 | + <HintPath>..\..\Tests\Libs\netcoreapp3.1\Notifications.Wpf.dll</HintPath> |
| 99 | + </Reference> |
| 100 | + </ItemGroup> |
| 101 | +</Project> |
0 commit comments