| 12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <AlfaToadCustomControlsDll Condition="'$(AlfaToadCustomControlsDll)' == '' AND '$(TargetFramework)' == 'net8.0-windows'">$(MSBuildThisFileDirectory)..\lib\net8.0-windows7.0\AlfaToad.CustomControls.dll</AlfaToadCustomControlsDll>
- <AlfaToadCustomControlsDll Condition="'$(AlfaToadCustomControlsDll)' == '' AND '$(TargetFramework)' == 'net48'">$(MSBuildThisFileDirectory)..\lib\net48\AlfaToad.CustomControls.dll</AlfaToadCustomControlsDll>
- <AlfaToadCustomControlsDll Condition="'$(AlfaToadCustomControlsDll)' == ''">$(MSBuildThisFileDirectory)..\lib\net48\AlfaToad.CustomControls.dll</AlfaToadCustomControlsDll>
- </PropertyGroup>
- <ItemGroup Condition="'$(DesignTimeBuild)' == 'true' And Exists('$(AlfaToadCustomControlsDll)')">
- <Reference Include="AlfaToad.CustomControls">
- <HintPath>$(AlfaToadCustomControlsDll)</HintPath>
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- </Project>
|