File tree Expand file tree Collapse file tree 2 files changed +39
-8
lines changed Expand file tree Collapse file tree 2 files changed +39
-8
lines changed Original file line number Diff line number Diff line change
1
+ name : Pull Request
2
+
3
+ permissions :
4
+ contents : read
5
+
6
+ on :
7
+ pull_request :
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : windows-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ name : Checkout
15
+ - uses : actions/setup-dotnet@v4
16
+ with :
17
+ dotnet-version : ' 8.0'
18
+ - run : dotnet test
19
+
20
+ dependency-review :
21
+ runs-on : ubuntu-latest
22
+ steps :
23
+ - uses : actions/checkout@v4
24
+ name : Checkout
25
+ - uses : actions/dependency-review-action@v4
26
+ name : Dependency Review
27
+ with :
28
+ allow-licenses : MIT, Apache-2.0, BSD-2-Clause
29
+ fail-on-scopes : development, runtime, unknown
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<TargetFrameworks >net8.0</TargetFrameworks >
4
- <AssemblyName >AuthenticodeLint.Tests</AssemblyName >
5
- <PackageId >AuthenticodeLint.Tests</PackageId >
6
- <VersionPrefix >0.1.0</VersionPrefix >
7
- <Authors >Kevin Jones</Authors >
8
- <GenerateRuntimeConfigurationFiles >true</GenerateRuntimeConfigurationFiles >
4
+ <IsPackable >false</IsPackable >
5
+ <OutputType >Exe</OutputType >
9
6
</PropertyGroup >
10
- <ItemGroup >
11
7
8
+ <ItemGroup >
12
9
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.13.0" />
13
- <PackageReference Include =" xunit" Version =" 2.9.3" />
14
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2" />
10
+ <PackageReference Include =" xunit.v3" Version =" 2.0.0" />
11
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2" >
12
+ <PrivateAssets >all</PrivateAssets >
13
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
14
+ </PackageReference >
15
+ </ItemGroup >
15
16
17
+ <ItemGroup >
16
18
<ProjectReference Include =" ..\AuthenticodeLint\AuthenticodeLint.csproj" />
17
19
</ItemGroup >
18
20
<ItemGroup >
You can’t perform that action at this time.
0 commit comments