You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding a reference to NetRevisionTask in my .csproj like so:
<PackageReference Include="Unclassified.NetRevisionTask">
<Version>0.4.3</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>```
The dialog VS > right-click project > Properties > Application > Assembly Information
is blank.
The assemblyInfo.cs file hasn't been modified.
When I remove the reference to NetRevisionTask from the csproj file, the Assembly Information dialog is filled again with the values taken from the assembyInfo.cs file, but only after rebuild.
Running VS 17.20 Community edition
The text was updated successfully, but these errors were encountered:
I haven't looked at the implementation of it in a long time, but I wouldn't expect any of the files to be visible here. The idea is that the properties are set during build, not by writing them to a file. At least if you're using the "modern" project structure (i.e. not the old .NET 4.8). Actually, a file called AssemblyInfo.cs (the name doesn't matter though) isn't needed anymore these days. It's a placeholder for those assembly attributes that are now set directly in the .csproj file. So maybe you're looking for something that isn't used anymore?
When adding a reference to NetRevisionTask in my .csproj like so:
The text was updated successfully, but these errors were encountered: