-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from Azure/mono
Create mono repo from existing submodules
- Loading branch information
Showing
2,953 changed files
with
628,212 additions
and
878 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
/src/Logs | ||
/_tmpout/** | ||
/TestResults/** | ||
/**/TestResults/** | ||
/**/swagger/*.json | ||
/**/packages/** | ||
.env | ||
|
This file was deleted.
Oops, something went wrong.
Submodule api
deleted from
45fb25
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.dockerignore | ||
.env | ||
.git | ||
.gitignore | ||
.vs | ||
.vscode | ||
docker-compose.yml | ||
docker-compose.*.yml | ||
*/bin | ||
*/obj |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<Project> | ||
<Import Project="project.props" /> | ||
<Import Project="common.props" /> | ||
<Import Project="version.props" /> | ||
<Import Project="$([MSBuild]::GetPathOfFileAbove(root.props))" Condition="'$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), root.props))' != ''" /> | ||
<Import Project="packages.props" /> | ||
</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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM microsoft/dotnet:2.2-runtime AS base | ||
WORKDIR /app | ||
|
||
FROM microsoft/dotnet:2.2-sdk AS build | ||
WORKDIR /src | ||
COPY src/Microsoft.Azure.IIoT.OpcUa.Api/cli/Microsoft.Azure.IIoT.OpcUa.Api.Cli.csproj src/Microsoft.Azure.IIoT.OpcUa.Api/cli/ | ||
COPY src/Microsoft.Azure.IIoT.OpcUa.Api/src/Microsoft.Azure.IIoT.OpcUa.Api.csproj src/Microsoft.Azure.IIoT.OpcUa.Api/src/ | ||
COPY src/Microsoft.Azure.IIoT.OpcUa.Api.Registry/src/Microsoft.Azure.IIoT.OpcUa.Api.Registry.csproj src/Microsoft.Azure.IIoT.OpcUa.Api.Registry/src/ | ||
COPY src/Microsoft.Azure.IIoT.OpcUa.Api.Twin/src/Microsoft.Azure.IIoT.OpcUa.Api.Twin.csproj src/Microsoft.Azure.IIoT.OpcUa.Api.Twin/src/ | ||
COPY src/Microsoft.Azure.IIoT.OpcUa.Api.History/src/Microsoft.Azure.IIoT.OpcUa.Api.History.csproj src/Microsoft.Azure.IIoT.OpcUa.Api.History/src/ | ||
COPY NuGet.Config NuGet.Config | ||
COPY *.props / | ||
RUN dotnet restore --configfile NuGet.Config src/Microsoft.Azure.IIoT.OpcUa.Api/cli/Microsoft.Azure.IIoT.OpcUa.Api.Cli.csproj | ||
COPY . . | ||
WORKDIR /src/src/Microsoft.Azure.IIoT.OpcUa.Api/cli | ||
RUN dotnet build Microsoft.Azure.IIoT.OpcUa.Api.Cli.csproj -c Release -o /app | ||
|
||
FROM build AS publish | ||
RUN dotnet publish Microsoft.Azure.IIoT.OpcUa.Api.Cli.csproj -c Release -o /app | ||
|
||
FROM base AS final | ||
WORKDIR /app | ||
COPY --from=publish /app . | ||
ENV _HOST=host.docker.internal | ||
ENTRYPOINT ["dotnet", "Microsoft.Azure.IIoT.OpcUa.Api.Cli.dll"] |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="nugetv3" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="myget" value="https://www.myget.org/F/azureiiot/api/v3/index.json" /> | ||
</packageSources> | ||
</configuration> |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<NoWarn>NU5125</NoWarn> | ||
<Authors>Microsoft</Authors> | ||
<Company>Microsoft</Company> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageIconUrl>http://go.microsoft.com/fwlink/?LinkID=288890</PackageIconUrl> | ||
<PackageReleaseNotes>$(RepositoryUrl)/releases</PackageReleaseNotes> | ||
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<HighEntropyVA>true</HighEntropyVA> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<LangVersion>7.3</LangVersion> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.