This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
Cashew/cashew/cashew.csproj

32 lines
1.5 KiB
XML
Raw Normal View History

2020-04-07 18:43:30 +02:00
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2018-08-28 14:55:27 +02:00
<PropertyGroup>
2020-04-07 18:43:30 +02:00
<TargetFramework>net461</TargetFramework>
2019-11-29 22:32:24 +01:00
<OutputType>Exe</OutputType>
2020-04-07 18:43:30 +02:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<Deterministic>false</Deterministic>
<AssemblyVersion>1.0.*</AssemblyVersion>
2018-08-28 14:55:27 +02:00
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Cashew-64.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
2019-12-01 14:54:38 +01:00
<AdditionalFiles Include="IronPythonBCL.zip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</AdditionalFiles>
2018-08-28 14:55:27 +02:00
</ItemGroup>
<ItemGroup>
<Content Include="Cashew-64.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CC-Functions.Misc" Version="1.1.7474.36199" />
2020-04-07 18:43:30 +02:00
<PackageReference Include="ICSharpCode.Decompiler" Version="5.0.2.5153" />
<PackageReference Include="ICSharpCode.TextEditor.Extended" Version="4.2.4" />
<PackageReference Include="IronPython" Version="2.7.10" />
2020-04-07 18:43:30 +02:00
<PackageReference Include="ModernUI" Version="2.0.0" />
</ItemGroup>
2019-12-01 15:14:40 +01:00
<PropertyGroup>
2020-04-07 18:43:30 +02:00
<PostBuildEvent>
if exist "$(SolutionDir)Data\pkgtool.exe" ($(SolutionDir)Data\pkgtool.exe build --noLogo --binDir .) else if exist "%appdata%\UpTool2\Apps\0e35d154-d0d3-45e0-b080-62f521263a44\app\pkgtool.exe" ("%appdata%\UpTool2\Apps\0e35d154-d0d3-45e0-b080-62f521263a44\app\pkgtool.exe" build --noLogo --binDir .) else echo Cound not find Package build tools, skipping</PostBuildEvent>
2019-12-01 15:14:40 +01:00
</PropertyGroup>
2018-08-28 14:55:27 +02:00
</Project>