-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectileSpawner.csproj
More file actions
93 lines (87 loc) · 4.95 KB
/
ProjectileSpawner.csproj
File metadata and controls
93 lines (87 loc) · 4.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<Platforms>AnyCPU;x64</Platforms>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PublicizerRuntimeStrategies>Unsafe</PublicizerRuntimeStrategies>
<RuntimeFrameworkVersion>7.0.3</RuntimeFrameworkVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="C:\Users\Nicolas B\.nuget\packages\krafs.publicizer\2.2.1\contentfiles\cs\any\Publicizer\IgnoresAccessChecksToAttribute.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Krafs.Publicizer" Version="2.2.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Publicize Include="Cosmoteer" IncludeCompilerGeneratedMembers="false" />
<Publicize Include="HalflingCore" IncludeCompilerGeneratedMembers="false" />
</ItemGroup>
<ItemGroup>
<Reference Include="Cosmoteer">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\Cosmoteer.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="HalflingCore">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\HalflingCore.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="PresentationCore">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationCore.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework-SystemCore">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework-SystemCore.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework-SystemData">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework-SystemData.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework-SystemDrawing">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework-SystemDrawing.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework-SystemXml">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework-SystemXml.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework-SystemXmlLinq">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework-SystemXmlLinq.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework.Aero">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework.Aero.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework.Aero2">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework.Aero2.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework.AeroLite">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework.AeroLite.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework.Classic">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework.Classic.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework.Luna">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework.Luna.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework.Royale">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationFramework.Royale.dll</HintPath>
</Reference>
<Reference Include="PresentationUI">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\PresentationUI.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\System.Windows.Forms.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms.Design">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\System.Windows.Forms.Design.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms.Design.Editors">
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Cosmoteer\Bin\System.Windows.Forms.Design.Editors.dll</HintPath>
</Reference>
</ItemGroup>
</Project>