-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbyss.Core.csproj
More file actions
36 lines (27 loc) · 1.16 KB
/
Abyss.Core.csproj
File metadata and controls
36 lines (27 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RootNamespace>Abyss</RootNamespace>
<Configurations>Debug;Release</Configurations>
<DebugType>embedded</DebugType>
<LangVersion>default</LangVersion>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<Platforms>AnyCPU</Platforms>
<ProjectName>Abyss.Core</ProjectName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.1</Version>
<Authors>GrahamKracker</Authors>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Abyss.Abilities"/>
<InternalsVisibleTo Include="Abyss.Items"/>
<InternalsVisibleTo Include="Abyss.WorldEvents"/>
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\build.yml"/>
</ItemGroup>
<Import Condition="Exists('..\..\dredge.targets')" Project="..\..\dredge.targets"/>
<Import Condition="!Exists('..\..\dredge.targets')" Project="dredge.targets"/>
</Project>