Skip to content

Commit

Permalink
Publish OSS Gadget to Nuget (#267)
Browse files Browse the repository at this point in the history
Attempt to being publishing OSS-Find-Squats to nuget.

* Update CS Proj

* Add oss-characteristics publish pipeline test

* Update oss-characteristics.yml

* Trigger pipeline churn.

* Change the first candidate to find squats instead of characteristics

* Update Shared.csproj

* Update oss-defog.csproj

* Update oss-find-source.csproj

* Adds icons

Co-authored-by: David Alcantar <daalcant@microsoft.com>
  • Loading branch information
gfs and daalcant authored Nov 5, 2021
1 parent 86fc9e3 commit 484fd91
Show file tree
Hide file tree
Showing 27 changed files with 207 additions and 27 deletions.
36 changes: 36 additions & 0 deletions Pipelines/nuget-pipelines/oss-find-squats.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
trigger: none
resources:
pipelines:
- pipeline: OSS Gadget Main Pipeline
source: OSS Gadget
trigger:
branches:
include:
- main
paths:
include:
- Pipelines
- src/oss-find-squats
- src/Shared

- stage: Release
condition: and(succeeded(), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI'))
jobs:
- template: templates/nuget-build-job.yml
parameters:
jobName: 'pack oss-find-squats'
projectPath: 'oss-find-squats/oss-find-squats.csproj'
projectName: 'oss-find-squats'
- task: PublishPipelineArtifact@1
displayName: Publish Signed Artifacts to Pipeline
inputs:
targetPath: 'Packages'
artifact: 'OSS-Find-Squats Nuget'
- task: NuGetCommand@2
displayName: Push NuGet Packages
inputs:
command: 'push'
packagesToPush: 'Packages/*.nupkg'
nuGetFeedType: 'external'
publishFeedCredentials: 'CST-E Nuget CI'
verbosityPush: 'Normal'
16 changes: 14 additions & 2 deletions src/Shared/Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,27 @@
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Shared Functionality</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<Configurations>Debug;Release</Configurations>
<AssemblyName>Shared</AssemblyName>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Authors>Microsoft</Authors>
<Company>Microsoft</Company>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageId>Microsoft.CST.OSSGadget.Shared</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
</PropertyGroup>
Expand Down
Binary file added src/oss-characteristics/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 14 additions & 3 deletions src/oss-characteristics/oss-characteristic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Description>OSS Gadget - Characteristic Identifier</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<StartupObject>Microsoft.CST.OpenSource.CharacteristicTool</StartupObject>
Expand All @@ -15,6 +13,19 @@
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.Characteristics.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-characteristics</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added src/oss-defog/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-defog/oss-defog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Obfuscated String Detector</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<StartupObject>Microsoft.CST.OpenSource.DefoggerTool</StartupObject>
Expand All @@ -15,6 +13,19 @@
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.Defog.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-defog</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Binary file added src/oss-detect-backdoor/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-detect-backdoor/oss-detect-backdoor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Backdoor Identifier</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<StartupObject>Microsoft.CST.OpenSource.DetectBackdoorTool</StartupObject>
Expand All @@ -15,6 +13,19 @@
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.DetectBackdoor.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-detect-backdoor</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added src/oss-detect-cryptography/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-detect-cryptography/oss-detect-cryptography.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,27 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Cryptography Detector</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<StartupObject>Microsoft.CST.OpenSource.DetectCryptographyTool</StartupObject>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.DetectCryptography.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-detect-cryptography</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added src/oss-diff/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-diff/oss-diff.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,27 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Package Differ</Description>
<Authors>Gabe Stocco</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<Configurations>Debug;Release</Configurations>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.PackageDiff.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-diff</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added src/oss-download/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-download/oss-download.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,27 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Package Downloader</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<StartupObject>Microsoft.CST.OpenSource.DownloadTool</StartupObject>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.Download.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-download</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Binary file added src/oss-find-domain-squats/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/oss-find-source/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-find-source/oss-find-source.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Source Code Locator</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<StartupObject>Microsoft.CST.OpenSource.FindSourceTool</StartupObject>
Expand All @@ -15,6 +13,19 @@
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.FindSource.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-find-source</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Binary file added src/oss-find-squats/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-find-squats/oss-find-squats.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,27 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Package Typosquatting Detector</Description>
<Authors>Gabe Stocco</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<Configurations>Debug;Release</Configurations>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.FindSquats.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-find-squats</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added src/oss-health/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-health/oss-health.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Project Health Estimator</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<StartupObject>Microsoft.CST.OpenSource.HealthTool</StartupObject>
Expand All @@ -15,6 +13,19 @@
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.HealthTool.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-health</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Binary file added src/oss-metadata/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-metadata/oss-metadata.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,25 @@
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Nullable>enable</Nullable>
<Authors>Suraj Jacob</Authors>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Package Metadata Collector</Description>
<LangVersion>9.0</LangVersion>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.Metadata.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-metadata</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Binary file added src/oss-reproducible/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/oss-reproducible/oss-reproducible.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,27 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Microsoft.CST.OpenSource</RootNamespace>
<Company>Microsoft Corporation</Company>
<Description>OSS Gadget - Package Reprodicibility Finder</Description>
<Authors>Michael Scovetta</Authors>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/OSSGadget</RepositoryUrl>
<StartupObject>Microsoft.CST.OpenSource.ReproducibleTool</StartupObject>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<PackageId>Microsoft.CST.OSSGadget.Reproducible.CLI</PackageId>
<PackageVersion>0.0.0</PackageVersion>
<PackageProjectUrl>https://github.com/Microsoft/OSSGadget</PackageProjectUrl>
<PackageTags>Security Scanner</PackageTags>
<ToolCommandName>oss-reproducible</ToolCommandName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon-128.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added src/oss-risk-calculator/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 484fd91

Please sign in to comment.