Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
akamud committed Jun 23, 2021
1 parent 4668c9d commit 5a061b8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.103
dotnet-version: 5.0.301

- name: publish FakeItEasy.AutoFakeIt
id: publish_nuget_common
Expand Down
6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"version": "5.0.301",
"rollForward": "latestFeature"
}
}
19 changes: 16 additions & 3 deletions src/FakeItEasy.AutoFakeIt/FakeItEasy.AutoFakeIt.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,33 @@

<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Title>FakeItEasy.AutoFakeIt</Title>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<DocumentationFile>bin\$(Configuration)\FakeItEasy.AutoFakeIt.xml</DocumentationFile>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Authors>Mahmoud Ali</Authors>
<Description>A very simple, yet flexible, "AutoFaker" for FakeItEasy to easily auto generate classes with faked dependencies.</Description>
<PackageProjectUrl>https://github.com/akamud/FakeItEasy.AutoFakeIt</PackageProjectUrl>
<RepositoryUrl>https://github.com/akamud/FakeItEasy.AutoFakeIt</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>fakeiteasy, unit-testing, nunit, xunit, mstest</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Company />
<Company/>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FakeItEasy" Version="4.0.0" />
<PackageReference Include="FakeItEasy" Version="4.0.0"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>

0 comments on commit 5a061b8

Please sign in to comment.