forked from CosmosOS/Cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,28 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<IsToolProject Condition="'$(IsMSBuildExtensionProject)' == 'True'">True</IsToolProject> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<IsToolProject Condition="'$(IsMSBuildExtensionProject)' == 'True'">True</IsToolProject> | ||
</PropertyGroup> | ||
|
||
<Import Project="InternalsVisibleTo.targets" /> | ||
<Import Project="InternalsVisibleTo.targets" /> | ||
|
||
<Import Project="PackageProperties.targets" /> | ||
|
||
<Import Project="NETFramework.targets" Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'" /> | ||
|
||
<Import Project="References.targets" /> | ||
<Import Project="PackageProperties.targets" /> | ||
|
||
<Import Project="References.targets" /> | ||
|
||
<Import Project="StrongName.targets" /> | ||
<Import Project="StrongName.targets" /> | ||
|
||
<!-- Project types --> | ||
<Import Project="MSBuildExtension.targets" Condition="'$(IsMSBuildExtensionProject)' == 'True'" /> | ||
<Import Project="Templates.targets" Condition="'$(IsTemplatesProject)' == 'True'" /> | ||
<Import Project="Tests.targets" Condition="'$(IsTestProject)' == 'True'" /> | ||
<Import Project="Tool.targets" Condition="'$(IsToolProject)' == 'True'" /> | ||
<Import Project="VSIX.targets" Condition="'$(IsVsixProject)' == 'True'" /> | ||
<!-- Project types --> | ||
<Import Project="MSBuildExtension.targets" Condition="'$(IsMSBuildExtensionProject)' == 'True'" /> | ||
<Import Project="Templates.targets" Condition="'$(IsTemplatesProject)' == 'True'" /> | ||
<Import Project="Tests.targets" Condition="'$(IsTestProject)' == 'True'" /> | ||
<Import Project="Tool.targets" Condition="'$(IsToolProject)' == 'True'" /> | ||
<Import Project="VSIX.targets" Condition="'$(IsVsixProject)' == 'True'" /> | ||
|
||
<Import Project="Workarounds.targets" /> | ||
<Import Project="Workarounds.targets" /> | ||
|
||
<Import Project="InternalPackages.targets" /> | ||
|
||
<Import Project="PackageVersions.targets" /> | ||
<Import Project="PackageVersions.targets" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
using IL2CPU.API; | ||
using IL2CPU.API.Attribs; | ||
using Cosmos.Debug.Kernel; | ||
|
||
using XSharp; | ||
using XSharp.Assembler; | ||
|