We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Be a decent sample app, and it's something we want anyway.
Nice if you could:
Here's what we write out as the CommonAssemblyInfo.cs file in fubumvc:
puts "Writing src/CommonAssemblyInfo.cs..." File.open('src/CommonAssemblyInfo.cs', 'w') do |file| file.write "using System.Reflection;\n" file.write "using System.Runtime.InteropServices;\n" file.write "[assembly: AssemblyDescription("#{options[:description]}")]\n" file.write "[assembly: AssemblyProduct("#{options[:product_name]}")]\n" file.write "[assembly: AssemblyCopyright("#{options[:copyright]}")]\n" file.write "[assembly: AssemblyTrademark("#{options[:trademark]}")]\n" file.write "[assembly: AssemblyVersion("#{options[:version]}")]\n" file.write "[assembly: AssemblyFileVersion("#{options[:file_version]}")]\n" file.write "[assembly: AssemblyInformationalVersion("#{options[:informational_version]}")]\n" end
end
The text was updated successfully, but these errors were encountered:
Not investing any time in project.json manipulation right now. We'll come back to this when whatever the MSBuild replacement is is around.
Sorry, something went wrong.
No branches or pull requests
Be a decent sample app, and it's something we want anyway.
Nice if you could:
Here's what we write out as the CommonAssemblyInfo.cs file in fubumvc:
puts "Writing src/CommonAssemblyInfo.cs..."
File.open('src/CommonAssemblyInfo.cs', 'w') do |file|
file.write "using System.Reflection;\n"
file.write "using System.Runtime.InteropServices;\n"
file.write "[assembly: AssemblyDescription("#{options[:description]}")]\n"
file.write "[assembly: AssemblyProduct("#{options[:product_name]}")]\n"
file.write "[assembly: AssemblyCopyright("#{options[:copyright]}")]\n"
file.write "[assembly: AssemblyTrademark("#{options[:trademark]}")]\n"
file.write "[assembly: AssemblyVersion("#{options[:version]}")]\n"
file.write "[assembly: AssemblyFileVersion("#{options[:file_version]}")]\n"
file.write "[assembly: AssemblyInformationalVersion("#{options[:informational_version]}")]\n"
end
end
The text was updated successfully, but these errors were encountered: