Skip to content

Commit

Permalink
修复工程文件
Browse files Browse the repository at this point in the history
修复管道配置及一些杂项
  • Loading branch information
NMSAzulX committed Nov 2, 2023
1 parent 72f546d commit 687c776
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 37 deletions.
12 changes: 0 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,6 @@
version: 2
updates:

- package-ecosystem: "nuget"
directory: "src/Natasha.CSharp/Natasha.CSharp"
schedule:
interval: "daily"
commit-message:
prefix: "[DEPENDENCY SRC]"
labels:
- "dependencies"
ignore:
- dependency-name: "System.Reflection.MetadataLoadContext"
- dependency-name: "Microsoft.Extensions.DependencyModel"

- package-ecosystem: "nuget"
directory: "src/Natasha.CSharp/Natasha.CSharp.Compiler"
schedule:
Expand Down
36 changes: 14 additions & 22 deletions .github/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,8 @@ src:
labels:
dependency_config:
- using_output:
enable: true
ignores:
- System
- System.Runtime.CompilerServices
- System.Reflection
enable: false
ignores:
id: 7E92644E-9DA0-493A-B1C6-B0E9E1D1C85B
is_ignored: false
is_folded: false
Expand All @@ -117,23 +114,7 @@ src:
package_name: DotNetCore.Natasha.CSharp
project_folder: src/Natasha.CSharp/Natasha.CSharp
labels:
dependency_config:
type: nuget
interval: daily
commit_prefix: '[DEPENDENCY SRC]'
special_time:
special_time_zone:
labels:
- name: dependencies
description: 有依赖需要升级
color: 4E04B0
ignore:
- name: System.Reflection.MetadataLoadContext
versions:
versions_type:
- name: Microsoft.Extensions.DependencyModel
versions:
versions_type:
dependency_config:
- using_output:
enable: true
ignores:
Expand Down Expand Up @@ -198,6 +179,17 @@ test:
project_folder: test/ut/NatashaFunctionUT
labels:
dependency_config:
- trigger_pull_request_test: false
trigger_codecov: false
id: 716B9CEC-8CA2-433F-9E9A-974E536C4099
is_ignored: false
is_folded: false
relative_path: test/ut/PluginFunctionUT/PluginFunctionUT.csproj
project_name: PluginFunctionUT
package_name:
project_folder: test/ut/PluginFunctionUT
labels:
dependency_config:
workflow:
folded_projects:
- test/workflow/Workflow.Initialization/Workflow.Initialization.csproj
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyOriginatorKeyFile>$([MSBuild]::NormalizeDirectory('$(SolutionDir)', 'resources'))natasha.snk</AssemblyOriginatorKeyFile>
<IncludeSymbols>true</IncludeSymbols>
<NoWarn>1701;1702;0168;NETSDK1138;IDE0060;xUnit2000;CS0067;CS8321;CS0649;CS8604;CA1822;RS1014;CS1591;</NoWarn>
<NoWarn>1701;1702;0168;NETSDK1138;IDE0060;xUnit2000;CS0067;CS8321;CS0649;CS8604;CA1822;RS1014;CS1591;CA1050;</NoWarn>

</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Choose>
<When Condition="$(MSBuildProjectFullPath.Contains('$([MSBuild]::NormalizeDirectory('$(SolutionDir)', 'test'))'))">
<PropertyGroup>
<NoWarn>CS0169;CS8602;CS8002;CS8032;1701;1702;0168;NETSDK1138;IDE0060;xUnit2000;CS0067;CS8321;CS0649;CA1822;CS1998;RS1014;CS1591;</NoWarn>
<NoWarn>CS0169;CS8602;CS8002;CS8032;1701;1702;0168;NETSDK1138;IDE0060;xUnit2000;CS0067;CS8321;CS0649;CA1822;CS1998;RS1014;CS1591;CA1050;</NoWarn>
</PropertyGroup>
</When>
</Choose>
Expand Down
1 change: 0 additions & 1 deletion test/ut/NatashaFunctionUT/NatashaFunctionUT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

<ItemGroup>
<PackageReference Include="DotNetCore.Compile.Environment" Version="3.2.0" />
<PackageReference Include="DotNetCore.Compile.Environment" Version="3.1.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
Expand Down

0 comments on commit 687c776

Please sign in to comment.