-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Workflow for nuget publish (#1040)
* Updated framework to fix workflow * make packable * fix workflow for dotnet format and change path for publish nuget * Fixed workflow * Fixed pathing * Fixed sourcing
- Loading branch information
1 parent
b65b43f
commit a2de77d
Showing
8 changed files
with
44 additions
and
37 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
Submodule neo
updated
10 files
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
9 changes: 2 additions & 7 deletions
9
src/Neo.SmartContract.Analyzer/Neo.SmartContract.Analyzer.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
1 change: 1 addition & 0 deletions
1
src/Neo.SmartContract.Framework/Neo.SmartContract.Framework.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
1 change: 1 addition & 0 deletions
1
src/Neo.SmartContract.Template/Neo.SmartContract.Template.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
55 changes: 29 additions & 26 deletions
55
src/Neo.SmartContract.Testing/Neo.SmartContract.Testing.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,26 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Title>Neo.SmartContract.Testing</Title> | ||
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks> | ||
<LangVersion>latest</LangVersion> | ||
<PackageId>Neo.SmartContract.Testing</PackageId> | ||
<PackageTags>NEO;Blockchain;Smart Contract</PackageTags> | ||
<Description>TestEngine for NEO smart contract testing.</Description> | ||
<IncludeContentInPack>true</IncludeContentInPack> | ||
<ContentTargetFolders>content</ContentTargetFolders> | ||
<Nullable>enable</Nullable> | ||
<NoWarn>$(NoWarn);NU5128</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Moq" Version="4.20.70" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" /> | ||
<PackageReference Include="ReportGenerator.Core" Version="5.2.4" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\neo\src\Neo\Neo.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks> | ||
<Title>Neo.SmartContract.Testing</Title> | ||
<LangVersion>latest</LangVersion> | ||
<AssemblyTitle>Neo.SmartContract.Testing</AssemblyTitle> | ||
<AssemblyName>Neo.SmartContract.Testing</AssemblyName> | ||
<RootNamespace>Neo.SmartContract.Testing</RootNamespace> | ||
<PackageId>Neo.SmartContract.Testing</PackageId> | ||
<PackageTags>NEO;Blockchain;Smart Contract</PackageTags> | ||
<Description>TestEngine for NEO smart contract testing.</Description> | ||
<IncludeContentInPack>true</IncludeContentInPack> | ||
<ContentTargetFolders>content</ContentTargetFolders> | ||
<Nullable>enable</Nullable> | ||
<NoWarn>$(NoWarn);NU5128</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Moq" Version="4.20.70" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" /> | ||
<PackageReference Include="ReportGenerator.Core" Version="5.2.4" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\neo\src\Neo\Neo.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |