-
-
Save jrgcubano/7412de80271bed5f365c4e5fbf085887 to your computer and use it in GitHub Desktop.
Revisions
-
attilah revised this gist
Aug 4, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -13,6 +13,7 @@ <NoWarn>CS8021</NoWarn> <NoBuild>true</NoBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> </PropertyGroup> <ItemGroup> -
attilah revised this gist
Jun 2, 2018 . 1 changed file with 0 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,10 +2,6 @@ <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> <PropertyGroup> <TargetFramework>netstandard1.0</TargetFramework> <IsPackable>true</IsPackable> -
attilah revised this gist
Jun 2, 2018 . 1 changed file with 11 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ <Project> <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> <PropertyGroup> <Description>$(PackageId)</Description> @@ -13,6 +15,8 @@ <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> <NoWarn>CS8021</NoWarn> <NoBuild>true</NoBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> </PropertyGroup> <ItemGroup> @@ -30,4 +34,9 @@ <PackageReference Remove="@(PackageReference)" /> </ItemGroup> <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> <Target Name="Compile" /> <Target Name="CopyFilesToOutputDirectory" /> </Project> -
attilah created this gist
Jun 2, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,33 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Description>$(PackageId)</Description> </PropertyGroup> <PropertyGroup> <TargetFramework>netstandard1.0</TargetFramework> <IsPackable>true</IsPackable> <IncludeBuildOutput>false</IncludeBuildOutput> <ContentTargetFolders>contentFiles</ContentTargetFolders> <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> <NoWarn>CS8021</NoWarn> </PropertyGroup> <ItemGroup> <Compile Update="@(Compile)"> <Pack>true</Pack> <PackagePath>$(ContentTargetFolders)\cs\netstandard1.0\$(PackageId)\%(RecursiveDir)\</PackagePath> </Compile> <EmbeddedResource Update="@(EmbeddedResource)"> <Pack>true</Pack> <PackagePath>$(ContentTargetFolders)\any\any\$(PackageId)\%(RecursiveDir)\</PackagePath> </EmbeddedResource> </ItemGroup> <ItemGroup> <PackageReference Remove="@(PackageReference)" /> </ItemGroup> </Project>