Last active
December 13, 2022 00:46
-
-
Save lbussell/47a3953686c218ede865e305478df74a to your computer and use it in GitHub Desktop.
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
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>net7.0</TargetFramework> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<Nullable>enable</Nullable> | |
<RestorePackagesPath>$(MSBuildThisFileDirectory)/restored/</RestorePackagesPath> | |
<PackageVersionToDownload>6.0.12</PackageVersionToDownload> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageDownload Include="Microsoft.NET.Runtime.Emscripten.2.0.23.Node.linux-x64" Version="[$(PackageVersionToDownload)]" /> | |
<PackageDownload Include="Microsoft.NET.Runtime.Emscripten.2.0.23.Sdk.linux-x64" Version="[$(PackageVersionToDownload)]" /> | |
<PackageDownload Include="Microsoft.NET.Runtime.MonoAOTCompiler.Task" Version="[$(PackageVersionToDownload)]" /> | |
<PackageDownload Include="Microsoft.NET.Runtime.MonoTargets.Sdk" Version="[$(PackageVersionToDownload)]" /> | |
<PackageDownload Include="Microsoft.NET.Runtime.WebAssembly.Sdk" Version="[$(PackageVersionToDownload)]" /> | |
<PackageDownload Include="Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.browser-wasm" Version="[$(PackageVersionToDownload)]" /> | |
<PackageDownload Include="microsoft.net.runtime.monoaotcompiler.task" Version="[$(PackageVersionToDownload)]" /> | |
<PackageDownload Include="microsoft.netcore.app.runtime.mono.browser-wasm" Version="[$(PackageVersionToDownload)]" /> | |
</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
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<packageSources> | |
<clear /> | |
<add key="servicing" value="your private feed here" /> | |
</packageSources> | |
<packageSourceCredentials> | |
<servicing> | |
<add key="Username" value="your username here" /> | |
<add key="ClearTextPassword" value="your pat here" /> | |
</servicing> | |
</packageSourceCredentials> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment