-
Notifications
You must be signed in to change notification settings - Fork 1
/
Shovel.csproj
41 lines (34 loc) · 1.23 KB
/
Shovel.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<Version>0.2.1</Version>
<Authors>Lauri Räsänen</Authors>
<RepositoryUrl>https://github.com/laurirasanen/shovel</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon></PackageIcon>
<ApplicationIcon>shovel.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="lib\**" />
<EmbeddedResource Remove="lib\**" />
<None Remove="lib\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="System.Drawing.Common" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="lib\Datamodel.NET\Datamodel.NET.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Datamodel.NET">
<HintPath>lib\Datamodel.NET\bin\Debug\Datamodel.NET.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="xcopy "$(ProjectDir)data" "$(TargetDir)data" /e /y /i /r" />
</Target>
</Project>