-
Notifications
You must be signed in to change notification settings - Fork 38
/
Donut.csproj
30 lines (25 loc) · 996 Bytes
/
Donut.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<StartupObject></StartupObject>
<ApplicationIcon />
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageId>DonutCore</PackageId>
<Authors>n1xbyte,Odzhan,TheWover</Authors>
<Product />
<Company />
<PackageProjectUrl>https://github.com/TheWover/donut</PackageProjectUrl>
<RepositoryUrl>https://github.com/n1xbyte/donutCS</RepositoryUrl>
<Description>dem sharp donuts</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>0</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.6.0" />
<PackageReference Include="PeNet" Version="1.1.1" />
</ItemGroup>
</Project>