Skip to content

Commit 5a061b8

Browse files
committed
Release 1.0.1
1 parent 4668c9d commit 5a061b8

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET Core
1616
uses: actions/setup-dotnet@v1
1717
with:
18-
dotnet-version: 5.0.103
18+
dotnet-version: 5.0.301
1919

2020
- name: publish FakeItEasy.AutoFakeIt
2121
id: publish_nuget_common

global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"version": "5.0.301",
4+
"rollForward": "latestFeature"
5+
}
6+
}

src/FakeItEasy.AutoFakeIt/FakeItEasy.AutoFakeIt.csproj

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,33 @@
77

88
<PropertyGroup>
99
<IncludeSymbols>true</IncludeSymbols>
10+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1011
<Title>FakeItEasy.AutoFakeIt</Title>
1112
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1213
<DocumentationFile>bin\$(Configuration)\FakeItEasy.AutoFakeIt.xml</DocumentationFile>
13-
<Version>1.0.0</Version>
14+
<Version>1.0.1</Version>
1415
<Authors>Mahmoud Ali</Authors>
1516
<Description>A very simple, yet flexible, "AutoFaker" for FakeItEasy to easily auto generate classes with faked dependencies.</Description>
1617
<PackageProjectUrl>https://github.com/akamud/FakeItEasy.AutoFakeIt</PackageProjectUrl>
1718
<RepositoryUrl>https://github.com/akamud/FakeItEasy.AutoFakeIt</RepositoryUrl>
1819
<RepositoryType>Git</RepositoryType>
1920
<PackageTags>fakeiteasy, unit-testing, nunit, xunit, mstest</PackageTags>
2021
<PackageLicenseExpression>MIT</PackageLicenseExpression>
21-
<Company />
22+
<Company/>
23+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
24+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
25+
<DebugType>embedded</DebugType>
26+
</PropertyGroup>
27+
28+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
29+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
30+
</PropertyGroup>
31+
32+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
33+
<DebugSymbols>true</DebugSymbols>
2234
</PropertyGroup>
2335
<ItemGroup>
24-
<PackageReference Include="FakeItEasy" Version="4.0.0" />
36+
<PackageReference Include="FakeItEasy" Version="4.0.0"/>
37+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
2538
</ItemGroup>
2639
</Project>

0 commit comments

Comments
 (0)