-
Notifications
You must be signed in to change notification settings - Fork 0
/
ckbuild.csproj
46 lines (46 loc) · 1.56 KB
/
ckbuild.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup>
<CustomCommands>
<CustomCommands>
<Command>
<type>AfterBuild</type>
<command>install.sh</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<CustomCommands>
<CustomCommands>
<Command>
<type>AfterBuild</type>
<command>install.sh</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<CustomCommands>
<CustomCommands>
<Command>
<type>AfterBuild</type>
<command>install.sh</command>
<workingdir>${ProjectDir}</workingdir>
</Command>
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Json" Version="4.5.0" />
<PackageReference Include="Scriban" Version="1.2.1" />
<PackageReference Include="ZeroFormatter" Version="1.6.4" />
</ItemGroup>
</Project>