-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBetterEventSystem.csproj
More file actions
46 lines (39 loc) · 1.38 KB
/
BetterEventSystem.csproj
File metadata and controls
46 lines (39 loc) · 1.38 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Addikted.BetterEventSystem</PackageId>
<Version>1.2.0</Version>
<Authors>addikted</Authors>
<Company>addikted</Company>
<Title>Better Event System</Title>
<Description>
Create an event system that is flexible and easy to use.
</Description>
<RepositoryUrl>https://github.com/AW1534/BetterEventSystem.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Docs\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Docs\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Docs\**" />
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<Content Include="docs\conf.py" />
<Content Include="docs\help.md" />
<Content Include="docs\index.md" />
<Content Include="docs\intro.md" />
<Content Include="docs\make.bat" />
<Content Include="docs\Makefile" />
<Content Include="docs\reference.md" />
<Content Include="docs\requirements.txt" />
<Content Include="docs\_static\js\script.js" />
</ItemGroup>
</Project>