File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed
Exceptionless.MessagePack.Tests
Exceptionless.TestHarness Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ jobs:
35
35
36
36
# GPR
37
37
# workaround for GPR push issue
38
- curl -sX PUT -u "foundatiofx:${{ secrets.GITHUB_TOKEN }}" -F package=@$package https://nuget.pkg.github.com/foundatiofx /
38
+ curl -sX PUT -u "foundatiofx:${{ secrets.GITHUB_TOKEN }}" -F package=@$package https://nuget.pkg.github.com/exceptionless /
39
39
40
40
# feedz (remove once GPR supports anonymous access)
41
- dotnet nuget push $package --source https://f.feedz.io/foundatio/foundatio /nuget --api-key ${{ secrets.FEEDZ_KEY }}
41
+ dotnet nuget push $package --source https://f.feedz.io/exceptionless/exceptionless /nuget --api-key ${{ secrets.FEEDZ_KEY }}
42
42
done
43
43
- name : Publish Release Packages
44
44
if : startsWith(github.ref, 'refs/tags/v')
Original file line number Diff line number Diff line change 1
1
<Project ToolsVersion =" 15.0" >
2
-
3
-
4
2
<PropertyGroup >
5
3
<Product >Exceptionless</Product >
6
4
<Description >Exceptionless is a cloud based error reporting service that sends your exceptions to https://exceptionless.com and provides aggregated views and analytics.</Description >
46
44
</ItemGroup >
47
45
48
46
<ItemGroup >
49
- <None Include =" ../../ LICENSE.txt" Pack =" true" Visible =" false" PackagePath =" $(PackageLicenseFile)" />
50
- <None Include =" ../../ build/exceptionless-icon.png" Pack =" true" PackagePath =" $(PackageIcon)" />
47
+ <None Include =" (SolutionDir) LICENSE.txt" Pack =" true" Visible =" false" PackagePath =" $(PackageLicenseFile)" />
48
+ <None Include =" (SolutionDir) build/exceptionless-icon.png" Pack =" true" PackagePath =" $(PackageIcon)" />
51
49
</ItemGroup >
52
50
53
51
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<Import Project =" ..\..\build\common.props" />
3
-
3
+
4
4
<PropertyGroup Condition =" '$(OS)' != 'Windows_NT' " >
5
5
<TargetFramework >netcoreapp3.1</TargetFramework >
6
6
</PropertyGroup >
9
9
</PropertyGroup >
10
10
11
11
<PropertyGroup >
12
+ <IsPackable >false</IsPackable >
12
13
<IsTestProject >true</IsTestProject >
13
14
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
14
15
<AssemblyName >Exceptionless.MessagePack.Tests</AssemblyName >
19
20
<PackageReference Include =" xunit" Version =" 2.4.1" />
20
21
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.1" />
21
22
</ItemGroup >
22
-
23
+
23
24
<ItemGroup >
24
25
<ProjectReference Include =" ..\..\src\Exceptionless\Exceptionless.csproj" />
25
26
<ProjectReference Include =" ..\..\src\Platforms\Exceptionless.MessagePack\Exceptionless.MessagePack.csproj" />
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<Import Project =" ..\..\build\common.props" />
3
-
3
+
4
4
<PropertyGroup Condition =" '$(OS)' != 'Windows_NT' " >
5
5
<TargetFramework >netstandard2.0</TargetFramework >
6
6
</PropertyGroup >
7
- <PropertyGroup Condition =" '$(OS)' == 'Windows_NT' " >
7
+ <PropertyGroup Condition =" '$(OS)' == 'Windows_NT' " >
8
8
<TargetFrameworks >netstandard2.0;net462</TargetFrameworks >
9
9
</PropertyGroup >
10
10
11
11
<PropertyGroup >
12
+ <IsPackable >false</IsPackable >
12
13
<IsTestProject >false</IsTestProject >
13
14
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
14
15
<RootNamespace >Exceptionless.TestHarness</RootNamespace >
Original file line number Diff line number Diff line change 4
4
<PropertyGroup Condition =" '$(OS)' != 'Windows_NT' " >
5
5
<TargetFramework >netcoreapp3.1</TargetFramework >
6
6
</PropertyGroup >
7
- <PropertyGroup Condition =" '$(OS)' == 'Windows_NT' " >
7
+ <PropertyGroup Condition =" '$(OS)' == 'Windows_NT' " >
8
8
<TargetFrameworks >netcoreapp3.1;net462</TargetFrameworks >
9
9
</PropertyGroup >
10
10
11
11
<PropertyGroup >
12
+ <IsPackable >false</IsPackable >
12
13
<IsTestProject >true</IsTestProject >
13
14
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
14
15
<AssemblyName >Exceptionless.Tests</AssemblyName >
You can’t perform that action at this time.
0 commit comments