-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathAura_Boot.csproj
More file actions
52 lines (45 loc) · 1.98 KB
/
Copy pathAura_Boot.csproj
File metadata and controls
52 lines (45 loc) · 1.98 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<SelfContained>True</SelfContained>
<Profile>VMware</Profile>
<BinFormat>ELF</BinFormat>
<StackCorruptionDetectionEnabled>False</StackCorruptionDetectionEnabled>
<StackCorruptionDetectionLevel>MethodFooters</StackCorruptionDetectionLevel>
<Deployment>ISO</Deployment>
<DebugEnabled>False</DebugEnabled>
<DebugMode>Source</DebugMode>
<IgnoreDebugStubAttribute>False</IgnoreDebugStubAttribute>
<ISOFile>bin\Debug\net6.0\Aura_Boot.iso</ISOFile>
<CompileVBEMultiboot>False</CompileVBEMultiboot>
<ExtractMapFile>False</ExtractMapFile>
<Launch>VMware</Launch>
<VisualStudioDebugPort>Pipe: Cosmos\Serial</VisualStudioDebugPort>
<CosmosDebugPort>Serial: COM1</CosmosDebugPort>
<VMwareEdition>Workstation</VMwareEdition>
<EnableGDB>False</EnableGDB>
<StartCosmosGDB>False</StartCosmosGDB>
<VBEResolution>1920x1080x32</VBEResolution>
<OptimizationLevel>3</OptimizationLevel>
<Timeout>0</Timeout>
<RemoveBootDebugOutput>True</RemoveBootDebugOutput>
</PropertyGroup>
<ItemGroup>
<None Remove="isoFiles\Tetris.gb" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="isoFiles\Tetris.gb" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cosmos.Build" Version="0-*" NoWarn="NU1604" />
<PackageReference Include="Cosmos.Debug.Kernel" Version="0-*" NoWarn="NU1604" />
<PackageReference Include="Cosmos.System2" Version="0-*" NoWarn="NU1604" />
<PackageReference Include="Cosmos.Plugs" Version="0-*" NoWarn="NU1604" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Aura_OS\Aura_OS.csproj" />
</ItemGroup>
<ItemGroup>
<PlugsReference Include="$(MSBuildProjectDirectory)\..\Aura_Plugs\bin\Debug\net6.0\Aura_Plugs.dll" />
</ItemGroup>
</Project>