-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove nuspec file, use sdk style csproj instead, update buildscript,…
… remove unused stuff
- Loading branch information
1 parent
296daa4
commit 1f18354
Showing
7 changed files
with
82 additions
and
81 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Version>$(Version)</Version> | ||
|
||
<Authors>Weingartner Maschinenbau GmbH</Authors> | ||
<PackageProjectUrl>https://github.com/Weingartner/Migrations.Json.Net</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Weingartner/Migrations.Json.Net</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Description>Assists in migrating serialized JSON.Net objects</Description> | ||
<Copyright>Weingartner Maschinenbau GmbH</Copyright> | ||
<PackageTags>json migration</PackageTags> | ||
|
||
</PropertyGroup> | ||
</Project> |
28 changes: 24 additions & 4 deletions
28
Weingartner.Json.Migration.Roslyn/Weingartner.Json.Migration.Roslyn.csproj
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,20 +1,40 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<PackageId>Weingartner.Json.Migration.Roslyn</PackageId> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<ContentTargetFolders>analyzers\dotnet\cs</ContentTargetFolders> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.0.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Weingartner.Json.Migration\Weingartner.Json.Migration.csproj" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Weingartner.Json.Migration.Analyzer</PackageId> | ||
|
||
<ContentTargetFolders>analyzers\dotnet\cs</ContentTargetFolders> | ||
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_AddAnalyzersToOutput</TargetsForTfmSpecificContentInPackage> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<NoWarn>1701;1702;NU5128</NoWarn> | ||
</PropertyGroup> | ||
|
||
<Target Name="_AddAnalyzersToOutput"> | ||
<ItemGroup> | ||
<TfmSpecificPackageFile Include="$(OutputPath)\Weingartner.Json.Migration.Roslyn.dll" PackagePath="$(ContentTargetFolders)" /> | ||
</ItemGroup> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<None Update="tools\*.ps1" CopyToOutputDirectory="Always" Pack="true" PackagePath="" /> | ||
<Content Include="$(OutputPath)\Weingartner.Json.Migration.Roslyn.dll" PackagePath="$(ContentTargetFolders)" /> | ||
</ItemGroup> | ||
<Import Project="..\Weingartner.Migration.Common.Shared\Weingartner.Migration.Common.Shared.projitems" Label="Shared" /> | ||
|
||
</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 was deleted.
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