mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
PrivateAccess now attribute for more compact syntax.
This commit is contained in:
parent
d1a40ad130
commit
f6637bcbb6
7 changed files with 43 additions and 79 deletions
|
|
@ -1,24 +1,18 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard1.5</TargetFramework>
|
||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>Cosmos.snk</AssemblyOriginatorKeyFile>
|
||||
<Authors>Cosmos</Authors>
|
||||
<Company>Cosmos</Company>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard1.5</TargetFramework>
|
||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>Cosmos.snk</AssemblyOriginatorKeyFile>
|
||||
<Authors>Cosmos</Authors>
|
||||
<Company>Cosmos</Company>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj">
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Cosmos.IL2CPU.API\Cosmos.IL2CPU.API.csproj">
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\90-Shared\Cosmos.Shared\Cosmos.Shared.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj"/>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.IL2CPU.API\Cosmos.IL2CPU.API.csproj"/>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\90-Shared\Cosmos.Shared\Cosmos.Shared.csproj"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -1,37 +1,25 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard1.5</TargetFramework>
|
||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>Cosmos.snk</AssemblyOriginatorKeyFile>
|
||||
<Authors>Cosmos</Authors>
|
||||
<Company>Cosmos</Company>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard1.5</TargetFramework>
|
||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>Cosmos.snk</AssemblyOriginatorKeyFile>
|
||||
<Authors>Cosmos</Authors>
|
||||
<Company>Cosmos</Company>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Cosmos.Assembler\Cosmos.Assembler.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Cosmos.IL2CPU.API\Cosmos.IL2CPU.API.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Cosmos.IL2CPU\Cosmos.IL2CPU.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\XSharp.Common\XSharp.Common.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Cosmos.CPU.x86\Cosmos.CPU.x86.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.Assembler\Cosmos.Assembler.csproj"/>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj"/>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.IL2CPU.API\Cosmos.IL2CPU.API.csproj"/>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.IL2CPU\Cosmos.IL2CPU.csproj"/>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\XSharp.Common\XSharp.Common.csproj"/>
|
||||
<ProjectReference PrivateAssets="All" Include="..\Cosmos.CPU.x86\Cosmos.CPU.x86.csproj"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -14,13 +14,9 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" />
|
||||
<ProjectReference Include="..\..\..\Cosmos.IL2CPU.API\Cosmos.IL2CPU.API.csproj">
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Cosmos.CPU.x86\Cosmos.CPU.x86.csproj">
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" />
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.IL2CPU.API\Cosmos.IL2CPU.API.csproj" />
|
||||
<ProjectReference PrivateAssets="All" Include="..\Cosmos.CPU.x86\Cosmos.CPU.x86.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -5,15 +5,9 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\10-CPU\Cosmos.CPU.x86\Cosmos.CPU.x86.csproj">
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\30-HAL\Cosmos.HAL\Cosmos.HAL.csproj">
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\90-Shared\Cosmos.Shared\Cosmos.Shared.csproj">
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\10-CPU\Cosmos.CPU.x86\Cosmos.CPU.x86.csproj" />
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\30-HAL\Cosmos.HAL\Cosmos.HAL.csproj" />
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\90-Shared\Cosmos.Shared\Cosmos.Shared.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -5,9 +5,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\90-Shared\Cosmos.Shared\Cosmos.Shared.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\90-Shared\Cosmos.Shared\Cosmos.Shared.csproj"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -5,12 +5,8 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\30-HAL\Cosmos.HAL\Cosmos.HAL.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\90-Shared\Cosmos.Shared\Cosmos.Shared.csproj" >
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\30-HAL\Cosmos.HAL\Cosmos.HAL.csproj"/>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\90-Shared\Cosmos.Shared\Cosmos.Shared.csproj"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -10,10 +10,8 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" />
|
||||
<ProjectReference Include="..\..\..\Cosmos.IL2CPU.API\Cosmos.IL2CPU.API.csproj">
|
||||
<PrivateAssets>All</PrivateAssets>
|
||||
</ProjectReference>
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" />
|
||||
<ProjectReference PrivateAssets="All" Include="..\..\..\Cosmos.IL2CPU.API\Cosmos.IL2CPU.API.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
Loading…
Reference in a new issue