forked from eclipse-aaspe/server
-
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.
fix dotnet formatting (eclipse-aaspe#263)
No Change just style adaption to be valid with dotnet format
- Loading branch information
Showing
58 changed files
with
2,311 additions
and
2,093 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,25 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<Configurations>Debug;Release;DebugSlow</Configurations> | ||
<Platforms>AnyCPU</Platforms> | ||
<LangVersion>8</LangVersion> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<Configurations>Debug;Release;DebugSlow</Configurations> | ||
<Platforms>AnyCPU</Platforms> | ||
<LangVersion>8</LangVersion> | ||
|
||
<PackageId>AasCore.Aas3_0</PackageId> | ||
<Version>1.0.0-rc1</Version> | ||
<Authors>Marko Ristin</Authors> | ||
<Description> | ||
An SDK for manipulating, verifying and de/serializing Asset Administration Shells. | ||
</Description> | ||
<RepositoryUrl>https://github.com/aas-core-works/aas-core3.0-csharp.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Copyright>Copyright (c) 2023 Marko Ristin</Copyright> | ||
<PackageLicenseUrl>https://raw.githubusercontent.com/aas-core-works/aas-core3.0-csharp/main/LICENSE</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/aas-core-works/aas-core3.0-csharp</PackageProjectUrl> | ||
<PackageTags>aas;asset administration shell;iiot;industry internet of things;industrie 4.0;i4.0</PackageTags> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
<PackageId>AasCore.Aas3_0</PackageId> | ||
<Version>1.0.0-rc1</Version> | ||
<Authors>Marko Ristin</Authors> | ||
<Description> | ||
An SDK for manipulating, verifying and de/serializing Asset Administration Shells. | ||
</Description> | ||
<RepositoryUrl>https://github.com/aas-core-works/aas-core3.0-csharp.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Copyright>Copyright (c) 2023 Marko Ristin</Copyright> | ||
<PackageLicenseUrl>https://raw.githubusercontent.com/aas-core-works/aas-core3.0-csharp/main/LICENSE</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/aas-core-works/aas-core3.0-csharp</PackageProjectUrl> | ||
<PackageTags>aas;asset administration shell;iiot;industry internet of things;industrie 4.0;i4.0</PackageTags> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/> | ||
</ItemGroup> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Using Include="AasCore.Aas3_0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Using Include="AasCore.Aas3_0"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\AasxServerStandardBib\AasxServerStandardBib.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\AasxServerStandardBib\AasxServerStandardBib.csproj"/> | ||
</ItemGroup> | ||
|
||
</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,51 +1,51 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<RootNamespace>AdminShellNS</RootNamespace> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DefineConstants>TRACE;UseAasxCompatibilityModels</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Using Include="AasCore.Aas3_0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="LICENSE.txt"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Resources\schemaV201\AAS.xsd"> | ||
<SubType>Designer</SubType> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Resources\schemaV201\AAS_ABAC.xsd"> | ||
<SubType>Designer</SubType> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Resources\schemaV201\IEC61360.xsd"> | ||
<SubType>Designer</SubType> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Resources\schemaV201\aas.json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" /> | ||
<PackageReference Include="Namotion.Reflection" Version="2.1.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="NJsonSchema" Version="10.8.0" /> | ||
<PackageReference Include="System.ComponentModel.Composition" Version="6.0.0" /> | ||
<PackageReference Include="System.IO.Packaging" Version="6.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\AasCore.Aas3_0\AasCore.Aas3_0.csproj" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<RootNamespace>AdminShellNS</RootNamespace> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DefineConstants>TRACE;UseAasxCompatibilityModels</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Using Include="AasCore.Aas3_0"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="LICENSE.txt"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Resources\schemaV201\AAS.xsd"> | ||
<SubType>Designer</SubType> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Resources\schemaV201\AAS_ABAC.xsd"> | ||
<SubType>Designer</SubType> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Resources\schemaV201\IEC61360.xsd"> | ||
<SubType>Designer</SubType> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Resources\schemaV201\aas.json"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0"/> | ||
<PackageReference Include="Namotion.Reflection" Version="2.1.1"/> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/> | ||
<PackageReference Include="NJsonSchema" Version="10.8.0"/> | ||
<PackageReference Include="System.ComponentModel.Composition" Version="6.0.0"/> | ||
<PackageReference Include="System.IO.Packaging" Version="6.0.0"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\AasCore.Aas3_0\AasCore.Aas3_0.csproj"/> | ||
</ItemGroup> | ||
</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
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
Oops, something went wrong.